Skip to content

Commit

Permalink
fix: missing strip tool for ABI 'ARMEABI'
Browse files Browse the repository at this point in the history
exclude ARMEABI native so file, ARMEABI has been removed in NDK r17.
  • Loading branch information
bekuno authored and bekuno committed Feb 26, 2020
1 parent 65b46df commit f08ac2d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ android {
abortOnError false
checkReleaseBuilds false
}

packagingOptions {
// exclude ARMEABI native so file, ARMEABI has been removed in NDK r17.
exclude "lib/armeabi/**"
}
}

dependencies {
Expand Down

0 comments on commit f08ac2d

Please sign in to comment.