From e61f261d10e3227a5a8ce93d9f653e50276fceac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8F=A9=E6=8F=90?= Date: Tue, 7 May 2019 15:22:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0x86=E6=9E=B6=E6=9E=84?= =?UTF-8?q?=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Android/app/build.gradle | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Android/app/build.gradle b/Android/app/build.gradle index fc16235a..2552971d 100755 --- a/Android/app/build.gradle +++ b/Android/app/build.gradle @@ -10,18 +10,20 @@ android { versionCode 1 versionName "1.0" applicationId "ctrip.wireless.android.crn" - - ndk { - abiFilters 'armeabi-v7a' - } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + ndk { + abiFilters 'armeabi-v7a' + } } debug { jniDebuggable true + ndk { + abiFilters 'armeabi-v7a', 'x86' + } } } } @@ -30,4 +32,4 @@ dependencies { implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'com.android.support:appcompat-v7:28.0.0' implementation project(':crnbase') -} \ No newline at end of file +}