Skip to content

Commit

Permalink
64bits support
Browse files Browse the repository at this point in the history
  • Loading branch information
kliu committed Jul 19, 2019
1 parent f188089 commit 8d6c31e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
11 changes: 3 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ android {
testInstrumentationRunner "android.support.test.agent.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true

ndk {
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
}
multiDexEnabled true

buildConfigField "String", "CLIENT_ID", "\"C338457876c27e853fb5e4dc85c6087164073e1e2bf415c081b600fe654d7af60\""
Expand Down Expand Up @@ -41,14 +44,6 @@ android {
preDexLibraries = false
javaMaxHeapSize "4g"
}
splits {
abi {
enable true
reset()
include 'armeabi-v7a', 'x86'
universalApk false
}
}
}

repositories {
Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

<application
android:name="com.ciscowebex.androidsdk.kitchensink.KitchenSinkApp"
android:multiArch="true"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ buildscript {

allprojects {
repositories {
mavenLocal()
jcenter()
google()
maven {
Expand Down

0 comments on commit 8d6c31e

Please sign in to comment.