Fix build I guess
This commit is contained in:
parent
a862b32a2b
commit
0f664a1e69
1 changed files with 7 additions and 0 deletions
|
@ -17,8 +17,15 @@ def getCurrentFlavor() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def javaVersion = JavaVersion.VERSION_1_8
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 29
|
compileSdkVersion 29
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility javaVersion
|
||||||
|
targetCompatibility javaVersion
|
||||||
|
}
|
||||||
|
kotlinOptions.jvmTarget = javaVersion
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "com.github.shadowsocks.plugin.v2ray"
|
applicationId "com.github.shadowsocks.plugin.v2ray"
|
||||||
minSdkVersion rootProject.minSdkVersion
|
minSdkVersion rootProject.minSdkVersion
|
||||||
|
|
Loading…
Reference in a new issue