feat: upload latest android source changes
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
/*
|
||||
pluginManagement {
|
||||
repositories {
|
||||
google()
|
||||
@@ -15,4 +16,30 @@ dependencyResolutionManagement {
|
||||
}
|
||||
|
||||
rootProject.name = "RemoteControl"
|
||||
include ':app'
|
||||
include ':app' */
|
||||
|
||||
|
||||
pluginManagement {
|
||||
repositories {
|
||||
maven { url 'https://maven.aliyun.com/repository/google' }
|
||||
maven { url 'https://maven.aliyun.com/repository/public' }
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
}
|
||||
dependencyResolutionManagement {
|
||||
// 关键点:如果你的项目在 build.gradle 里也写了 repositories,这里建议改回 PREFER_SETTINGS
|
||||
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
|
||||
repositories {
|
||||
// 阿里镜像库
|
||||
maven { url 'https://maven.aliyun.com/repository/google' }
|
||||
maven { url 'https://maven.aliyun.com/repository/public' }
|
||||
google()
|
||||
mavenCentral()
|
||||
maven { url = uri("https://jitpack.io") }
|
||||
}
|
||||
}
|
||||
|
||||
rootProject.name = "RemoteControl"
|
||||
include ':app'
|
||||
|
||||
Reference in New Issue
Block a user