I have an app built with react-native 0.52.0. After receiving notification from google, I am trying make it supportable for 64bit as well.
So I tried adding these
ndk {
abiFilters 'armeabi-v7a','x86', 'x86_64', 'arm64-v8a'
}
But I was getting,
"java.lang.UnsatisfiedLinkError: dlopen failed: "/data/data/my.com.app/lib-main/libgnustl_shared.so" is 32-bit instead of 64-bit"
How can I overcome this ?
Thank you.