Rollback SDK and add deprecation warning
This commit is contained in:
parent
afd1479f84
commit
6fb22f722f
@ -3,14 +3,15 @@ plugins {
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 33
|
||||
compileSdkVersion 32
|
||||
buildToolsVersion "30.0.3"
|
||||
namespace "net.crystalyx.setaswallpaper"
|
||||
|
||||
defaultConfig {
|
||||
applicationId "net.crystalyx.setaswallpaper"
|
||||
minSdkVersion 5
|
||||
targetSdkVersion 33
|
||||
//noinspection OldTargetApi
|
||||
targetSdkVersion 32
|
||||
versionCode 8
|
||||
versionName "3.1"
|
||||
}
|
||||
@ -30,7 +31,9 @@ android {
|
||||
release {
|
||||
minifyEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
signingConfig signingConfigs.release
|
||||
if (System.env.STORE_FILE) {
|
||||
signingConfig signingConfigs.release
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -17,6 +17,10 @@ allprojects {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.deprecation = true
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
|
Loading…
Reference in New Issue
Block a user