2021-08-08 20:58:08 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-10-28 06:57:37 +00:00
|
|
|
compileSdkVersion 31
|
2021-08-08 20:58:08 +00:00
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.crystalyx.setaswallpaper"
|
2021-08-17 07:19:01 +00:00
|
|
|
minSdkVersion 23
|
2021-10-28 06:57:37 +00:00
|
|
|
targetSdkVersion 31
|
2021-09-09 16:16:34 +00:00
|
|
|
versionCode 6
|
|
|
|
versionName "2.4"
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-10-28 00:38:16 +00:00
|
|
|
implementation "androidx.core:core:1.7.0"
|
2021-08-08 22:57:03 +00:00
|
|
|
}
|