Skip to content

Commit

Permalink
Merge pull request #18 from burnoo/improve-gradle-configs
Browse files Browse the repository at this point in the history
Improve Gradle configs
  • Loading branch information
burnoo authored Aug 6, 2024
2 parents 352ca8b + fd01af4 commit b4b4bac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions compose-remember-setting/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ kotlin {
}
}

tasks.configureEach {
if (name.contains("UnitTestKotlinAndroid")) {
enabled = false
}
}

android {
namespace = "dev.burnoo.compose.remembersetting"
compileSdk = libs.versions.android.compileSdk.get().toInt()
Expand Down
2 changes: 1 addition & 1 deletion example/composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ kotlin {
}

android {
namespace = "dev.burnoo.compose.remembersetting"
namespace = "dev.burnoo.compose.remembersetting.example"
compileSdk = libs.versions.android.compileSdk.get().toInt()

sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
Expand Down

0 comments on commit b4b4bac

Please sign in to comment.