优化代码

This commit is contained in:
xuhuixiang
2026-03-17 15:37:08 +08:00
parent 229ffaea8f
commit 15ac5caa27
15 changed files with 30 additions and 27 deletions

View File

@@ -66,8 +66,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility rootProject.ext.JAVA_VERSION
targetCompatibility rootProject.ext.JAVA_VERSION
}
applicationVariants.all { variant ->
@@ -94,5 +94,8 @@ android {
}
dependencies {
//基础模块 涉及的敏感权限只有版本更新的 安装app权限
implementation project(path: ':base')
//基础模块 不包含任何的系统权限 两个基础包 按需选择
//implementation project(path: ':base_noupdata')
}