Increase sdk and fix crash at the end
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Michel Roux 2022-09-19 19:02:47 +02:00
parent 72e4aec44d
commit afd1479f84
2 changed files with 6 additions and 4 deletions

View File

@ -3,16 +3,16 @@ plugins {
}
android {
compileSdkVersion 32
compileSdkVersion 33
buildToolsVersion "30.0.3"
namespace "net.crystalyx.setaswallpaper"
defaultConfig {
applicationId "net.crystalyx.setaswallpaper"
minSdkVersion 5
targetSdkVersion 32
versionCode 7
versionName "3.0"
targetSdkVersion 33
versionCode 8
versionName "3.1"
}
signingConfigs {

View File

@ -78,6 +78,8 @@ public class SetWallpaperActivity extends Activity {
}
Toast.makeText(this, "Wallpaper set!", Toast.LENGTH_SHORT).show();
finish();
}
}