File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
plugins/src/main/kotlin/extension Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ private fun DependencyHandlerScope.implementation(
30
30
private fun DependencyHandlerScope.androidTestImplementation (dependency : Any ) = dependencies.add(" androidTestImplementation" , dependency)
31
31
32
32
private fun DependencyHandlerScope.debugImplementation (dependency : Any ) = dependencies.add(" debugImplementation" , dependency)
33
+ private fun DependencyHandlerScope.releaseImplementation (dependency : Any ) = dependencies.add(" releaseImplementation" , dependency)
33
34
34
35
/* *
35
36
* Dependencies used by all the modules
@@ -53,7 +54,10 @@ fun DependencyHandlerScope.composeDependencies(libs: LibrariesForLibs) {
53
54
implementation(libs.androidx.activity.compose)
54
55
debugImplementation(libs.androidx.compose.ui.tooling)
55
56
debugImplementation(libs.androidx.compose.ui.test.manifest)
56
- implementation(libs.showkase)
57
+ // Workaround to fix error "No matching variant of com.airbnb.android:showkase:1.0.5 was found":
58
+ // Replace `implementation` by `debugImplementation` and `releaseImplementation`
59
+ debugImplementation(libs.showkase)
60
+ releaseImplementation(libs.showkase)
57
61
implementation(libs.kotlinx.collections.immutable)
58
62
}
59
63
You can’t perform that action at this time.
0 commit comments