This commit is contained in:
kunfei
2023-03-29 22:00:40 +08:00
parent d59ef46434
commit 058cc93be4
2 changed files with 4 additions and 4 deletions
+3 -4
View File
@@ -111,8 +111,7 @@ android {
compileOptions { compileOptions {
// Flag to enable support for the new language APIs // Flag to enable support for the new language APIs
// 开启后rhino1.4.1会报错,rhino1.4.1已经脱糖处理 coreLibraryDesugaringEnabled true
coreLibraryDesugaringEnabled false
// Sets Java compatibility to Java 11 // Sets Java compatibility to Java 11
sourceCompatibility JavaVersion.VERSION_11 sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11
@@ -135,8 +134,8 @@ android {
dependencies { dependencies {
compileOnly "com.android.tools.build:gradle:$agp_version" compileOnly "com.android.tools.build:gradle:$agp_version"
//noinspection GradleDependency,GradlePackageUpdate,脱糖库和rhino冲突,rhino1.4.1已经脱糖处理 //noinspection GradleDependency,GradlePackageUpdate
//coreLibraryDesugaring('com.android.tools:desugar_jdk_libs_nio:2.0.2') coreLibraryDesugaring('com.android.tools:desugar_jdk_libs_nio:2.0.2')
testImplementation('junit:junit:4.13.2') testImplementation('junit:junit:4.13.2')
androidTestImplementation('androidx.test:runner:1.5.2') androidTestImplementation('androidx.test:runner:1.5.2')
androidTestImplementation('androidx.test.ext:junit:1.1.5') androidTestImplementation('androidx.test.ext:junit:1.1.5')
+1
View File
@@ -14,6 +14,7 @@
**2023/03/29** **2023/03/29**
* 修复低于android7.0版本无法恢复备份的问题 * 修复低于android7.0版本无法恢复备份的问题
* 修复低版本安卓崩溃的问题
**2023/03/28** **2023/03/28**