Merge branch 'master' of ssh://patema.crystalyx.net:2222/Xefir/SetAsWallpaper
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
commit
3bdb6a0e8d
@ -10,9 +10,10 @@ android {
|
||||
defaultConfig {
|
||||
applicationId "net.crystalyx.setaswallpaper"
|
||||
minSdkVersion 5
|
||||
//noinspection OldTargetApi
|
||||
targetSdkVersion 32
|
||||
versionCode 7
|
||||
versionName "3.0"
|
||||
versionCode 8
|
||||
versionName "3.1"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -78,6 +78,8 @@ public class SetWallpaperActivity extends Activity {
|
||||
}
|
||||
|
||||
Toast.makeText(this, "Wallpaper set!", Toast.LENGTH_SHORT).show();
|
||||
|
||||
finish();
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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