我想在Android Studio上设置我正在使用的Java版本。
如何设置“项目语言级别”,就像我在“项目结构...”中的Intellij上所做的那样 - > '项目'?
答案 0 :(得分:18)
答案 1 :(得分:8)
示例build.gradle文件允许我在Android Studio 2.1中使用lambdas:
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.geniuscreations.successtaskanalyzer"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}