Bump version

This commit is contained in:
Attila Uygun 2023-05-28 00:37:52 +02:00
parent f6f67d7e53
commit 970d2e07ec
4 changed files with 9 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="18"
android:versionName="1.0.2">
android:versionCode="19"
android:versionName="1.0.3">
<application
android:allowBackup="false"

6
build/android/stack Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
BUILD="$1"
if [[ -z "$1" ]]; then
BUILD="debug"
fi
adb logcat | ndk-stack -sym ./app/build/intermediates/merged_native_libs/"$BUILD"/out/lib/arm64-v8a

View File

@ -22,7 +22,7 @@ using namespace eng;
namespace {
constexpr char kVersionStr[] = "Version 1.0.2";
constexpr char kVersionStr[] = "Version 1.0.3";
constexpr char kMenuOption[Menu::kOption_Max][10] = {"continue", "start",
"credits", "exit"};

View File

@ -22,8 +22,6 @@
#include "engine/shader_source.h"
#include "third_party/texture_compressor/texture_compressor.h"
#define USE_VULKAN_RENDERER 1
using namespace base;
namespace eng {