Skip to content

Commit

Permalink
Merge pull request #1181 from kubode/kubode/fix-namespace
Browse files Browse the repository at this point in the history
Specify unique `android.namespace` to resolve warnings
  • Loading branch information
Raibaz committed Nov 5, 2023
2 parents ff79a07 + 896a522 commit a30c745
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ plugins {
}

android {
namespace = "io.mockk"
compileSdk = Deps.Versions.compileSdk

lint {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ plugins {
}

android {
namespace = "io.mockk"
compileSdk = Deps.Versions.compileSdk

lint {
Expand Down
1 change: 1 addition & 0 deletions modules/mockk-agent-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ val mavenDescription: String by extra("${project.description}")

@Suppress("UnstableApiUsage")
android {
namespace = "io.mockk.proxy.android"
externalNativeBuild {
cmake {
path = file("CMakeLists.txt")
Expand Down
1 change: 1 addition & 0 deletions modules/mockk-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ val mavenName: String by extra("MockK Android")
val mavenDescription: String by extra("${project.description}")

android {
namespace = "io.mockk.android"
packaging {
resources {
excludes += "META-INF/LICENSE.md"
Expand Down

0 comments on commit a30c745

Please sign in to comment.