SetAsWallpaper/app/build.gradle

33 lines
678 B
Groovy
Raw Normal View History

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
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 {
implementation "androidx.core:core:1.8.0"
2021-08-08 22:57:03 +00:00
}