Skip to content

Commit

Permalink
Add arm64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Mar 7, 2017
1 parent 60d7d90 commit a433822
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jdk:

env:
global:
- NDK_VERSION=r12b
- NDK_VERSION=r14
- NDK_CCACHE=ccache
- GOROOT_BOOTSTRAP=$GOROOT
- ANDROID_NDK_HOME=$HOME/.android/android-ndk-${NDK_VERSION}
Expand Down
4 changes: 2 additions & 2 deletions mobile/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ enablePlugins(AndroidApp)
android.useSupportVectors

name := "shadowsocks"
version := "4.1.1"
versionCode := Some(181)
version := "4.1.2"
versionCode := Some(182)

proguardOptions ++=
"-keep class com.github.shadowsocks.JniHelper { *; }" ::
Expand Down
2 changes: 1 addition & 1 deletion mobile/src/main/jni/Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ LIBEVENT_SOURCES := \

LOCAL_MODULE := event
LOCAL_SRC_FILES := $(addprefix libevent/, $(LIBEVENT_SOURCES))
LOCAL_CFLAGS := -O2 -I$(LOCAL_PATH)/libevent \
LOCAL_CFLAGS := -O2 -D_EVENT_HAVE_ARC4RANDOM -I$(LOCAL_PATH)/libevent \
-I$(LOCAL_PATH)/libevent/include \

include $(BUILD_STATIC_LIBRARY)
Expand Down
2 changes: 1 addition & 1 deletion mobile/src/main/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_ABI := armeabi-v7a x86
APP_ABI := armeabi-v7a arm64-v8a x86
APP_PLATFORM := android-19
APP_STL := stlport_static
NDK_TOOLCHAIN_VERSION := clang
2 changes: 1 addition & 1 deletion mobile/src/overture
Submodule overture updated 1 files
+17 −1 make.bash

0 comments on commit a433822

Please sign in to comment.