64 bit version issue in react-native android app by google play store

后端 未结 6 1990
离开以前
离开以前 2020-12-08 02:20

According to https://android-developers.googleblog.com/2017/12/improving-app-security-and-performance.html:

In August 2019, Play store will require that new

6条回答
  •  生来不讨喜
    2020-12-08 03:19

    If you are using react native version less than 0.59 then you must upgrade your apps to react native 0.59 or higher. React native supports 64 bit only from 0.59 version.

    Also, make sure your app has following lines in your MyProject/Android/App/Build.gradle file.

    splits {
            abi {
                reset()
                enable enableSeparateBuildPerCPUArchitecture
                universalApk true  // If true, also generate a universal APK
                include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
            }
        }
    

    For more refer: Update your React Native Apps to be 64 Bit

提交回复
热议问题