Skip to content

Commit

Permalink
Add ABI filter to support x86,arm
Browse files Browse the repository at this point in the history
Resolve #1
  • Loading branch information
hoangpq committed Jun 28, 2020
1 parent b2a964b commit f0bca45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ android {
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk {
abiFilters "armeabi", "arm64", "x86"
}
}
buildTypes {
release {
Expand All @@ -25,7 +28,7 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.core:core-ktx:1.0.2'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
Expand Down

0 comments on commit f0bca45

Please sign in to comment.