From 088b567230c6b265f198fc0c84e07c552bfbfaab Mon Sep 17 00:00:00 2001 From: anpigon Date: Fri, 23 Jul 2021 21:19:40 +0900 Subject: [PATCH] bump versions --- android/app/build.gradle | 6 +++--- package.json | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 70d53a41..bab2eec8 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -98,7 +98,7 @@ apply from: "../../node_modules/react-native-code-push/android/codepush.gradle" * Upload all the APKs to the Play Store and people will download * the correct one based on the CPU architecture of their device. */ -def enableSeparateBuildPerCPUArchitecture = false +def enableSeparateBuildPerCPUArchitecture = true /** * Run Proguard to shrink the Java bytecode in release builds. @@ -140,8 +140,8 @@ android { applicationId "com.mobilekeychain.steem" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 33 - versionName "1.3.11" + versionCode 35 + versionName "1.3.12" multiDexEnabled true missingDimensionStrategy 'react-native-camera', 'general' resValue 'string', "CODE_PUSH_APK_BUILD_TIME", String.format("\"%d\"", System.currentTimeMillis()) diff --git a/package.json b/package.json index 58797ff7..0bd37363 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "scripts": { "android": "react-native run-android", "android-bundle": "rm -f android/app/build/outputs/bundle/release/app-release.aab && cd android && ./gradlew bundleRelease && cd ..", + "android-bundle:debug": "rm -f android/app/build/outputs/bundle/debug/app-debug.aab && cd android && ./gradlew bundleDebug && cd ..", "android-assemble": "rm -f android/app/build/outputs/apk/release/app-release.apk && cd android && ./gradlew assembleRelease && cd ..", "android-release": "react-native run-android --variant=release", "android-release:stage": "react-native run-android --variant=releaseStaging",