v0.7.4d: updated gradle plugin and version to fix fdroid issues

This commit is contained in:
Evan Debenham 2019-08-25 20:06:10 -04:00
parent 65e7ed7644
commit bb9a1850d8
2 changed files with 7 additions and 4 deletions

View File

@ -4,7 +4,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.4.1' classpath 'com.android.tools.build:gradle:3.5.0'
} }
} }
@ -14,8 +14,8 @@ allprojects {
appName = 'Shattered Pixel Dungeon' appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 362 appVersionCode = 363
appVersionName = '0.7.4c' appVersionName = '0.7.4d'
appAndroidCompileSDK = 28 appAndroidCompileSDK = 28
appAndroidMinSDK = 9 appAndroidMinSDK = 9

View File

@ -69,10 +69,13 @@ public class v0_7_X_Changes {
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);
changes = new ChangeInfo("", false, null); changes = new ChangeInfo("v0.7.4d", false, null);
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed a crash on start error some F-droid users were experiencing."));
changes = new ChangeInfo("v0.7.4c", false, null); changes = new ChangeInfo("v0.7.4c", false, null);
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);