【发布时间】:2019-09-21 17:24:02
【问题描述】:
我正在使用 react-native 和 EXPO CLI 来构建 android apk 文件。但我无法上传到 Play 商店。我收到一条警告消息
警告此版本不符合 Google Play 64 位要求
以下 APK 或 App Bundle 可用于 64 位设备,但它们只有 32 位本机代码:1.
从 2019 年 8 月 1 日起,所有版本都必须符合 Google Play 64 位要求。
我正在使用的版本
"dependencies": {
"expo": "^32.0.0",
"prop-types": "^15.7.2",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-navigation": "^3.4.1"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0"
},
帮助我按照 Google Play 64 位要求构建 app bundle。
【问题讨论】:
-
你成功了吗?我尝试升级到 expo 33,但我仍然在 google play 中收到警告(“此版本不符合 Google Play 64 位要求”、“以下 APK 或 App Bundles 可用于 64 位设备,但它们只有 32 位本机代码...")
标签: android react-native build 64-bit expo