Skip to content

Instantly share code, notes, and snippets.

@truongngoclinh
Created May 5, 2017 09:15
Show Gist options
  • Save truongngoclinh/072bae835cd7d2ada1e46c41cd55793f to your computer and use it in GitHub Desktop.
Save truongngoclinh/072bae835cd7d2ada1e46c41cd55793f to your computer and use it in GitHub Desktop.
React native issue with loading 64 bit .so libs
// 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