Why [Default and static interface methods] of java 8 are not supported in Android Studio 3.0?
The code always got the error hint.
The build.gradle settings :
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.dreamzone.mtime"
minSdkVersion 18
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
But android studio doc shows it can compatible any api level.
https://developer.android.com/studio/write/java8-support.html

