We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5de3d commit 145b9dbCopy full SHA for 145b9db
app/build.gradle.kts
@@ -112,8 +112,8 @@ android {
112
dependencies {
113
implementation(fileTree("libs") { include("*.jar", "*.aar") })
114
115
- implementation(project(":binderDetector"))
116
- implementation(project(":base"))
+ implementation(projects.binderDetector)
+ implementation(projects.base)
117
118
// region [AndroidX]
119
implementation(libsAndroid.activity.ktx)
settings.gradle.kts
@@ -1,5 +1,7 @@
1
import org.gradle.kotlin.dsl.support.uppercaseFirstChar
2
3
+enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
4
+
5
pluginManagement {
6
includeBuild("build-logic")
7
0 commit comments