Skip to content

Commit

Permalink
Merge pull request #9561 from garymathews/TIMOB-25441
Browse files Browse the repository at this point in the history
[TIMOB-25441] Android: Support ARM64
  • Loading branch information
Lokesh Choudhary committed Nov 7, 2017
2 parents 84e76eb + 1e08d9a commit 130bf00
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion android/build/libv8.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
libv8.version=6.1.534.33
libv8.version=6.2.414.36
libv8.mode=release
2 changes: 1 addition & 1 deletion android/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function AndroidBuilder() {

this.targets = [ 'emulator', 'device', 'dist-playstore' ];

this.validABIs = [ 'armeabi-v7a', 'x86' ];
this.validABIs = [ 'arm64-v8a', 'armeabi-v7a', 'x86' ];

this.uncompressedTypes = [
'jpg', 'jpeg', 'png', 'gif',
Expand Down
4 changes: 2 additions & 2 deletions android/runtime/v8/Application.mk
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ TARGET_PLATFORM = android-10
APP_CPPFLAGS += -std=c++11
APP_STL := c++_shared
ifeq ($(BUILD_X86), 1)
APP_ABI := armeabi-v7a x86
APP_ABI := arm64-v8a armeabi-v7a x86
else
APP_ABI := armeabi-v7a
APP_ABI := arm64-v8a armeabi-v7a
endif

TARGET_DEVICE := device
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
version: 1.0.0
apiversion: 4
architectures: armeabi-v7a x86
architectures: arm64-v8a armeabi-v7a x86
description: <%- moduleName %>
author: <%- author %>
license: Specify your license
Expand Down
Binary file not shown.
Empty file.
Binary file not shown.
Empty file.
Binary file removed support/android/native/libs/armeabi/libtiprofiler.so
Binary file not shown.
Binary file removed support/android/native/libs/armeabi/libtiverify.so
Binary file not shown.
Binary file removed support/android/native/libs/x86/libtiprofiler.so
Binary file not shown.
7 changes: 4 additions & 3 deletions support/module/packaged/modules.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"https://github.com/appcelerator-modules/ti.touchid/releases/download/ios-2.1.2/ti.touchid-iphone-2.1.2.zip"
],
"android": [
"https://github.com/appcelerator-modules/ti.facebook/releases/download/android-6.2.0/facebook-android-6.2.0.zip",
"https://github.com/appcelerator-modules/ti.facebook/releases/download/android-7.0.0/facebook-android-7.0.0.zip",
"https://s3.amazonaws.com/timobile.appcelerator.com/modules/ti.cloudpush-android-4.0.4.zip",
"https://github.com/appcelerator-modules/ti.map/releases/download/android-3.3.1/ti.map-android-3.3.1.zip",
"https://github.com/appcelerator-modules/ti.touchid/releases/download/android-2.2.0/ti.touchid-android-2.2.0.zip"
"https://github.com/appcelerator-modules/ti.map/releases/download/android-4.0.0/ti.map-android-4.0.0.zip",
"https://github.com/appcelerator-modules/ti.touchid/releases/download/android-3.0.0/ti.touchid-android-3.0.0.zip",
"https://github.com/appcelerator-modules/ti.playservices/releases/download/android-11.0.40/ti.playservices-android-11.0.40.zip"
],
"commonjs": [
"https://github.com/appcelerator-modules/ti.cloud/releases/download/3.2.11/ti.cloud-commonjs-3.2.11.zip"
Expand Down

0 comments on commit 130bf00

Please sign in to comment.