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 +}