From 4083221b21f0eee2cb0ba0680eff8c58392b6d15 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Sat, 15 Jun 2019 18:48:07 +0100 Subject: [PATCH] Android: Added support for 64-bit hardware --- ReactNativeClient/android/app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ReactNativeClient/android/app/build.gradle b/ReactNativeClient/android/app/build.gradle index f0d21dd1e3..2d36828544 100644 --- a/ReactNativeClient/android/app/build.gradle +++ b/ReactNativeClient/android/app/build.gradle @@ -94,10 +94,10 @@ android { applicationId "net.cozic.joplin" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 2097507 - versionName "1.0.271" + versionCode 2097508 + versionName "1.0.272" ndk { - abiFilters "armeabi-v7a", "x86" + abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64" } missingDimensionStrategy 'react-native-camera', 'general' }