fix: 移除重复依赖和权限声明,统一 Java 7 编译配置
- winboll/build.gradle: 移除重复的 okhttp:3.14.9 和 gson:2.8.5 依赖 - libwinboll/build.gradle: 新增 compileOptions 强制 Java 7 编译 - AndroidManifest.xml: 移除重复的 GET_PACKAGE_SIZE 权限声明
This commit is contained in:
@@ -12,6 +12,10 @@ android {
|
||||
minSdkVersion 26
|
||||
targetSdkVersion 30
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_7
|
||||
targetCompatibility JavaVersion.VERSION_1_7
|
||||
}
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
|
||||
Reference in New Issue
Block a user