This commit is contained in:
2025-02-12 17:18:11 +08:00
commit e228f15161
47 changed files with 1049 additions and 0 deletions

32
settings.gradle.kts Normal file
View File

@@ -0,0 +1,32 @@
pluginManagement {
repositories {
maven {
url = uri("http://192.168.31.149:8081/nexus/repository/maven-public/")
isAllowInsecureProtocol = true
}
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url = uri("http://192.168.31.149:8081/nexus/repository/maven-public/")
isAllowInsecureProtocol = true
}
google()
mavenCentral()
}
}
rootProject.name = "Basics Codelab"
include(":app")