Closed i2infinity closed 6 years ago
This is a known issue https://github.com/eclipsesource/J2V8/issues/174
The proposed work around is to add the following ndk
support to android.defaultConfig
of your App's build.gradle
android {
....
defaultConfig {
....
ndk {
abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
}
}
}
PayPal Here App uses this fix currently and it is working fine. Native 64 bit support for this SDK will come with an upcoming release
For kotlin based gradle files you should change it to:
//https://github.com/paypal/paypal-here-sdk-android-distribution/#installation ndk { abiFilters.addAll(listOf("armeabi", "armeabi-v7a", "x86", "mips")) }
Run
2.0 version of SDK is throwing a `java.lang.IllegalStateException: J2V8 native library not loaded runtime exception on my App