File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -80,14 +80,14 @@ kotlin {
8080
8181configurations.all {
8282 exclude(group = " org.jetbrains.kotlinx" , module = " kotlinx-coroutines-debug" )
83+ // Exclude the duplicate annotations to resolve the conflict
84+ exclude(group = " com.sschr15.annotations" , module = " jb-annotations-kmp-jvm" )
8385}
8486
8587fun MinimalExternalModuleDependency.simpleString () =
8688 this .let { " ${it.module} :${it.versionConstraint.requiredVersion} " }
8789
8890android {
89- compileSdk = 34 // for example
90-
9191 namespace = " com.example.project"
9292 compileSdk = libs.versions.android.compileSdk.get().toInt()
9393
@@ -96,7 +96,6 @@ android {
9696 sourceSets[" main" ].resources.srcDirs(" src/commonMain/resources" )
9797
9898 defaultConfig {
99- minSdk = 30
10099 applicationId = " com.example.project"
101100 minSdk = libs.versions.android.minSdk.get().toInt()
102101 targetSdk = libs.versions.android.targetSdk.get().toInt()
You can’t perform that action at this time.
0 commit comments