2021-08-08 20:58:08 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 30
|
|
|
|
buildToolsVersion "30.0.3"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "net.crystalyx.setaswallpaper"
|
2021-08-08 22:57:03 +00:00
|
|
|
minSdkVersion 14
|
2021-08-08 20:58:08 +00:00
|
|
|
targetSdkVersion 30
|
2021-08-09 06:56:39 +00:00
|
|
|
versionCode 3
|
|
|
|
versionName "2.1"
|
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-08-08 22:57:03 +00:00
|
|
|
implementation "androidx.core:core:1.6.0"
|
|
|
|
}
|