Fix typo in `AndroidCompose.kt`

pull/926/head
Simon Marquis 1 year ago committed by GitHub
parent b989d3a243
commit eadcbe6795
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