Merge pull request #926 from SimonMarquis/patch-1

Fix typo in `AndroidCompose.kt`
pull/935/head
Alex Vanyo 1 year ago committed by GitHub
commit 000c21f065
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,7 +41,7 @@ internal fun Project.configureAndroidCompose(
val bom = libs.findLibrary("androidx-compose-bom").get() val bom = libs.findLibrary("androidx-compose-bom").get()
add("implementation", platform(bom)) add("implementation", platform(bom))
add("androidTestImplementation", platform(bom)) add("androidTestImplementation", platform(bom))
// Add ComponentActivity to debug manfest // Add ComponentActivity to debug manifest
add("debugImplementation", libs.findLibrary("androidx.compose.ui.testManifest").get()) add("debugImplementation", libs.findLibrary("androidx.compose.ui.testManifest").get())
// Screenshot Tests on JVM // Screenshot Tests on JVM
add("testImplementation", libs.findLibrary("robolectric").get()) add("testImplementation", libs.findLibrary("robolectric").get())

Loading…
Cancel
Save