mirror of https://github.com/LeOS-GSI/LeOS-Genesis
20 lines
348 B
Groovy
20 lines
348 B
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 33
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_8
|
||
|
targetCompatibility JavaVersion.VERSION_1_8
|
||
|
}
|
||
|
buildTypes {
|
||
|
debug {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|