原文地址: Android app相容低版本Java環境 - Stars-One的雜貨小窩
起因是修復一個Bug遇到的問題,找到了一個可以讓app相容低版本java的方法
眾所周知,Android版本更新後,其內建的JRE環境也隨之更新了
假如我們在app中用到了JDK8的特有的屬性,而使用者的手機裝置系統還是比較低,而沒有JRE8環境,自然執行的時候就會提示類不存在了
問題說明
專案中使用到的一個庫kizitonwose/Calendar: A highly customizable calendar view and compose library for Android.
但是由於其內建使用的是Jdk8的對應的日期類,但是低版本的Android並不是jdk8的執行環境,所以會導致在低版本執行出現類未定義的錯誤,如下錯誤:
Fatal Exception: java.lang.NoClassDefFoundError: Failed resolution of: Ljava/time/temporal/WeekFields;
at com.kizitonwose.calendar.core.ExtensionsKt.firstDayOfWeekFromLocale(Extensions.kt:5)
at com.kizitonwose.calendar.core.ExtensionsKt.daysOfWeek$default(Extensions.kt:5)
實際上,開源庫文件已經提供了低版本適配對應說明(但這個專案之前是組長寫的,而他是直接將庫程式碼複製過來了,沒注意那個文件,所以導致後面線上環境低版本的android裝置報錯了)
解決方法
這裡說的問題的解決方法,也是本文提到的相容低版本的方法
我們需要可以使用google的一個庫
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
最新版本可以在此連結找到
並在app模組的gradle檔案裡配置以下資訊即可:
android {
defaultConfig {
// Required ONLY if your minSdkVersion is below 21
multiDexEnabled true
}
compileOptions {
// Enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Set Java compatibility (version can be higher if desired)
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
// Also add this for Kotlin projects (version can be higher if desired)
jvmTarget = "1.8"
}
}
dependencies {
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:<latest-version>'
}
最後,如果以後我們需要使用到JDK高版本的特性,可以使用上面的方法,讓低版本的Android系統也能使用上高版本JDK特性