diff options
author | 2017-12-27 12:45:37 +1100 | |
---|---|---|
committer | 2017-12-27 12:45:37 +1100 | |
commit | bf28b347fb0fd51950a161d2ac2da517bfacb102 (patch) | |
tree | 5f1b94feb74f6b957bb5c01ef464b546dc8042b9 | |
parent | 5a9200e1b6a2fe330cae29fba70ef0db9956eb5f (diff) |
version bump (nw)mame0193
-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 ec2e3cba682..b1c24c13f63 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="192" - android:versionName="0.192" + android:versionCode="193" + android:versionName="0.193" android:installLocation="auto"> <!-- Android 5.0 --> @@ -1547,14 +1547,14 @@ endif ifeq (posix,$(SHELLTYPE)) $(GENDIR)/version.cpp: $(GENDIR)/git_desc | $(GEN_FOLDERS) - @echo '#define BARE_BUILD_VERSION "0.192"' > $@ + @echo '#define BARE_BUILD_VERSION "0.193"' > $@ @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.192" > $@ + @echo #define BARE_BUILD_VERSION "0.193" > $@ @echo extern const char bare_build_version[]; >> $@ @echo extern const char build_version[]; >> $@ @echo const char bare_build_version[] = BARE_BUILD_VERSION; >> $@ |