2021-08-08 20:58:08 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-09-03 11:29:11 +00:00
|
|
|
compileSdkVersion 32
|
2021-08-08 20:58:08 +00:00
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.crystalyx.setaswallpaper"
|
2022-09-03 13:00:44 +00:00
|
|
|
minSdkVersion 5
|
2022-09-03 11:29:11 +00:00
|
|
|
targetSdkVersion 32
|
|
|
|
versionCode 7
|
|
|
|
versionName "3.0"
|
2021-08-08 20:58:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2021-08-08 23:06:53 +00:00
|
|
|
|
2021-08-08 20:58:08 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
}
|