Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Enable 64 bit ndk builds
Browse files Browse the repository at this point in the history
  • Loading branch information
davehlong committed Jul 11, 2019
1 parent d8cb2bd commit cfe8379
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ android {
versionName "v0.1.1"
missingDimensionStrategy 'react-native-camera', 'general'
ndk {
abiFilters "armeabi-v7a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
moduleName "TurtleCoin_jni"
ldLibs "log"
stl "stlport_static"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"scripts": {
"start": "./node_modules/.bin/jetify; react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res; ./node_modules/.bin/react-native run-android",
"start-release": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res; ./node_modules/.bin/react-native run-android",
"build-android": "sudo adb kill-server; sudo adb start-server; cd android; ./gradlew assembleRelease; cd ..",
"build-android": "rm -r android/app/src/main/res/drawable-*; sudo adb kill-server; sudo adb start-server; cd android; ./gradlew assembleRelease; cd ..",
"deploy-android": "sudo adb kill-server; sudo adb start-server; cd android; ./gradlew assembleRelease && ./gradlew installRelease; cd ..",
"postinstall": "./node_modules/.bin/rn-nodeify --install fs,dgram,process,path,console,crypto,buffer,stream,vm,http,https,url,zlib,net,assert,tls --hack --yarn; ./node_modules/.bin/react-native link; ./node_modules/.bin/jetify"
},
Expand Down

0 comments on commit cfe8379

Please sign in to comment.