- 目录/包名/类名/Gradle plugin 全部重命名 - XLog → BugCollect - logApiUrl/logEnabled → bugCollectApiUrl/bugCollectEnabled - assembleDebug 通过 Co-Authored-By: Claude <noreply@anthropic.com>
31 行
762 B
Plaintext
31 行
762 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
maven(url = "https://nexus.xuqinmin.com/repository/android/")
|
|
maven(url = "https://developer.hihonor.com/repo")
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
maven(url = "https://nexus.xuqinmin.com/repository/android/")
|
|
maven(url = "https://developer.hihonor.com/repo")
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "XuqmGroupAndroidSDK"
|
|
|
|
include(":sdk-core")
|
|
include(":sdk-im")
|
|
include(":sdk-push")
|
|
include(":sdk-update")
|
|
include(":sdk-webview")
|
|
include(":sdk-license")
|
|
include(":sdk-bugcollect")
|
|
include(":sample-app")
|