我尝试在我的应用程序中使用Java 8功能,所以我根据谷歌doc进行了一些配置以使用java 8功能但仍无法正常工作check this image
我的build.gradle
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.ameerhamza6733.dwnews"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
答案 0 :(得分:2)
ZonedDateTime
不是supported Java 8 features之一。您会注意到no java.time package in the Android reference documentation。