when I run apk(build from react native) in phone it has this error
this app is not compatible with the latest version of android. check for an update or contact the apps developer
how to fix it?
when I run apk(build from react native) in phone it has this error
this app is not compatible with the latest version of android. check for an update or contact the apps developer
how to fix it?
Share Improve this question asked Feb 17 at 14:00 Samira GheibipourSamira Gheibipour 3771 gold badge3 silver badges15 bronze badges1 Answer
Reset to default 0maybe it has 2 reason :
your version react native is lower 73, because your sdk upper then 23 you must update react native upper 73.3
OR
you install arm-v7 on arm-v8 phone(or inverse... something like that), you must install "universal Apk" that it install any phone
you can low size "universal apk" with Proguard or use this
ndk { abiFilters "armeabi-v7a", "arm64-v8a" /, "x86", "x86_64"/ }