Skip to content

Commit

Permalink
Fix Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sky233ml committed Nov 12, 2023
1 parent 1bd46d3 commit d045277
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion kndroidx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ publishing { // 发布配置
}
}
}
repositories {
mavenLocal()
}
}


Expand All @@ -38,7 +41,6 @@ android {
defaultConfig {
namespace = "io.github.kndroidx"
minSdk = 21
targetSdk = 34
}

buildTypes {
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ pluginManagement {
google()
mavenCentral()
gradlePluginPortal()
maven("https://jitpack.io")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://jitpack.io")
}
}

Expand Down

0 comments on commit d045277

Please sign in to comment.