tweaks & new version

This commit is contained in:
m2049r 2018-10-08 16:51:09 +02:00 committed by m2049r
parent ef29db62c4
commit e1bd04c945
3 changed files with 5 additions and 5 deletions

View File

@ -7,8 +7,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 27
versionCode 130
versionName "1.8.0 'BulletBroof'"
versionCode 131
versionName "1.8.1 'Bullets And Octane-Pirates'"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {

View File

@ -92,7 +92,7 @@ for arch in ${archs[@]}; do
TARGET_INC_DIR=$lib_root/monero/include
rm -rf $TARGET_INC_DIR
mkdir -p $TARGET_INC_DIR
cp -a src/wallet/api/wallet2_api.h $TARGET_INC_DIR
cp -a $base_dir/src/wallet/api/wallet2_api.h $TARGET_INC_DIR
cd $base_dir
done

View File

@ -7,7 +7,7 @@ source script/env.sh
cd $EXTERNAL_LIBS_BUILD_ROOT
url="https://github.com/m2049r/monero"
version="release-v0.13-prep"
version="release-v0.13.0-monerujo"
if [ ! -d "monero" ]; then
git clone ${url} -b ${version}
@ -15,6 +15,6 @@ if [ ! -d "monero" ]; then
git submodule update --recursive --init
else
cd monero
git submodule update --recursive
git checkout ${version}
git submodule update --recursive --init
fi