Created
May 5, 2017 09:15
-
-
Save truongngoclinh/072bae835cd7d2ada1e46c41cd55793f to your computer and use it in GitHub Desktop.
React native issue with loading 64 bit .so libs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://corbt.com/posts/2015/09/18/mixing-32-and-64bit-dependencies-in-android.html | |
android { | |
... | |
defaultConfig { | |
... | |
ndk { | |
abiFilters "armeabi-v7a", "x86" | |
} | |
packagingOptions { | |
exclude "lib/arm64-v8a/librealm-jni.so" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment