Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.

Latest commit

 

History

History
10 lines (10 loc) · 226 Bytes

java_compilation_options.md

File metadata and controls

10 lines (10 loc) · 226 Bytes

Java编译选项

android {
    compileOptions {
        sourceCompatibility = "1.6"
        targetCompatibility = "1.6"
    }
}

默认值是“1.6”,这个设置会影响所有编译Java源代码的task。