I have a library that doesn't support 64 bit so i read that you can just not include any 64 bit libs and it should auto fall back to 32 bit I am set cordova to multiple apks so it produces 2 version one for arm one for x86
productFlavors {
armv7 {
versionCode defaultConfig.versionCode + 2
ndk {
abiFilters "armeabi-v7a", ""
}
}
x86 {
versionCode defaultConfig.versionCode + 4
ndk {
abiFilters "x86", ""
}
}
all {
ndk {
abiFilters "all", ""
}
}
If i unzip the arm apk and i look in lib i only see one folder named "armeabi-v7a" but i still get a
java.lang.UnsatisfiedLinkError: could find lib to load: lib.so it's looking for a 64 bit version of lib. The documentation of the lib i am using state that i need to have fallback support for 322 bit and a gradle.propertiesfile with android.useDeprecatedNdk=true. i added this still no dice.
Any whelp woudl be greatly appreciated.