Bumped version to 0.7.4dev and version code to 45

This commit is contained in:
Zukero
2018-12-08 09:53:30 +01:00
parent 358f84b1ee
commit a002497ce1
2 changed files with 4 additions and 4 deletions

View File

@@ -3,8 +3,8 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="44"
android:versionName="0.7.3dev"
android:versionCode="45"
android:versionName="0.7.4dev"
android:installLocation="auto"
>
<uses-sdk

View File

@@ -28,8 +28,8 @@ public final class AndorsTrailApplication extends Application {
public static final boolean DEVELOPMENT_VALIDATEDATA = false;
public static final boolean DEVELOPMENT_DEBUGMESSAGES = false;
public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED;
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? 999 : 44;
public static final String CURRENT_VERSION_DISPLAY = "0.7.3";
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? 999 : 45;
public static final String CURRENT_VERSION_DISPLAY = "0.7.4dev";
public static final boolean IS_RELEASE_VERSION = !CURRENT_VERSION_DISPLAY.matches(".*[a-d].*");
private final AndorsTrailPreferences preferences = new AndorsTrailPreferences();