Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
* [Android] Update build.gradle to support external build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
YorkShen committed Apr 3, 2019
1 parent 414e9dd commit 3b0b9d0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion android/sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,12 @@ android {
versionCode 1
versionName project.version
ndk {
abiFilters "armeabi-v7a","armeabi","x86"
if (project.armABIOnly){
abiFilters "armeabi"
println "armeabi only"
} else {
abiFilters "armeabi-v7a", "armeabi", "x86"
}
}

externalNativeBuild {
Expand Down

0 comments on commit 3b0b9d0

Please sign in to comment.