Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
Added support for x64 devices
Browse files Browse the repository at this point in the history
  • Loading branch information
daper committed Mar 5, 2020
1 parent 5ea200b commit 93e3c96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ android {
versionCode 13
versionName "1.12"
ndk {
abiFilters "armeabi-v7a", "x86", "armeabi-v8a", "x86_64"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
signingConfigs {
Expand All @@ -144,7 +144,7 @@ android {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86", "armeabi-v8a", "x86_64"
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
buildTypes {
Expand Down

0 comments on commit 93e3c96

Please sign in to comment.