feat: upload latest android source changes

This commit is contained in:
sue
2026-03-03 22:16:30 +08:00
parent c0a7109816
commit 0bf4f72141
56 changed files with 14949 additions and 2152 deletions

View File

@@ -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'