diff options
author | 2018-11-28 06:12:23 +1100 | |
---|---|---|
committer | 2018-11-28 06:12:23 +1100 | |
commit | c6150e754289e07af2579c40cbc53d06115b9d8a (patch) | |
tree | d809b4bfee16452d7b22a462bb4476e0b622d955 | |
parent | b47259fa0800d8fa22b28e3547865e83ba94702b (diff) |
version bump (nw)mame0204
-rw-r--r-- | android-project/app/src/main/AndroidManifest.xml | 4 | ||||
-rw-r--r-- | makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/android-project/app/src/main/AndroidManifest.xml b/android-project/app/src/main/AndroidManifest.xml index 02b31b3af14..b811380f2bd 100644 --- a/android-project/app/src/main/AndroidManifest.xml +++ b/android-project/app/src/main/AndroidManifest.xml @@ -4,8 +4,8 @@ --> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.mamedev.mame" - android:versionCode="203" - android:versionName="0.203" + android:versionCode="204" + android:versionName="0.204" android:installLocation="auto"> <!-- Android 5.0 --> @@ -1584,14 +1584,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.203"' > $@ + @echo '#define BARE_BUILD_VERSION "0.204"' > $@ @echo 'extern const char bare_build_version[];' >> $@ @echo 'extern const char build_version[];' >> $@ @echo 'const char bare_build_version[] = BARE_BUILD_VERSION;' >> $@ @echo 'const char build_version[] = BARE_BUILD_VERSION " ($(NEW_GIT_VERSION))";' >> $@ else $(GENDIR)/version.cpp: $(GENDIR)/git_desc - @echo #define BARE_BUILD_VERSION "0.203" > $@ + @echo #define BARE_BUILD_VERSION "0.204" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |