2021-08-08 22:58:08 +02:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2021-10-28 08:57:37 +02:00
|
|
|
compileSdkVersion 31
|
2021-08-08 22:58:08 +02:00
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.crystalyx.setaswallpaper"
|
2021-08-17 09:19:01 +02:00
|
|
|
minSdkVersion 23
|
2021-10-28 08:57:37 +02:00
|
|
|
targetSdkVersion 31
|
2021-09-09 18:16:34 +02:00
|
|
|
versionCode 6
|
|
|
|
versionName "2.4"
|
2021-08-08 22:58:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2021-08-09 01:06:53 +02:00
|
|
|
|
2021-08-08 22:58:08 +02: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-09 00:57:03 +02:00
|
|
|
}
|