mirror of https://github.com/auygun/kaliber.git
Bump version
This commit is contained in:
parent
f6f67d7e53
commit
970d2e07ec
|
@ -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"
|
||||
|
|
|
@ -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
|
|
@ -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"};
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue