更新安卓通知栏提示

This commit is contained in:
wyf
2025-09-11 09:38:14 +08:00
parent 2c0b911aeb
commit 0bb50226c2
56 changed files with 1431 additions and 488 deletions

View File

@@ -8,8 +8,12 @@ allprojects {
maven { url 'https://maven.aliyun.com/repository/center' }
maven { url 'https://maven.aliyun.com/repository/gradle-plugin' }
maven { url 'https://jitpack.io' }
maven { url 'https://developer.huawei.com/repo/'}
google()
mavenCentral()
flatDir {
dirs 'libs'
}
}
// 修复由于高版本导致namespace检测为空的问题没遇到可不添加
@@ -56,4 +60,18 @@ subprojects {
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
buildscript {
repositories {
google()
mavenCentral()
maven {url 'https://developer.huawei.com/repo/'}
}
}
buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:8.2.1'
classpath 'com.huawei.agconnect:agcp:1.9.1.301'
}
}