first commit

This commit is contained in:
2026-02-16 18:24:19 +08:00
commit c458f3c707
472 changed files with 61558 additions and 0 deletions

23
build.gradle Normal file
View File

@@ -0,0 +1,23 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
jcenter() // 警告jcenter 已被弃用,但目前保留以保证兼容性
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // 警告jcenter 已被弃用,但目前保留以保证兼容性
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}