-
-
Save OliverVicente/cc74db6a122e88ed0d87760273d20aad to your computer and use it in GitHub Desktop.
dependencies for jetpack compose navigation testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| dependencies { | |
| // Specify compose BoM | |
| val composeBom = platform("androidx.compose:compose-bom:2025.01.01") | |
| implementation(composeBom) | |
| androidTestImplementation(composeBom) | |
| // Implement navigation and navigation testing | |
| implementation("androidx.navigation:navigation-compose::2.8.6") | |
| androidTestImplementation("androidx.navigation:navigation-testing:2.8.6") | |
| // Implement junit and compose junit | |
| androidTestImplementation("androidx.test.ext:junit:1.2.1") | |
| androidTestImplementation("androidx.compose.ui:ui-test-junit4") | |
| // Add Kotlin test library | |
| androidTestImplementation(kotlin("test")) | |
| // Other dependencies | |
| .. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment