[Modify]优化gradle编译速度

This commit is contained in:
wushaocheng
2023-01-31 17:01:56 +08:00
parent ba5803076e
commit 371726a882
4 changed files with 18 additions and 10 deletions

View File

@@ -11,8 +11,12 @@ android {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = '11'
}
dataBinding {