我第一次使用Expo(react原生应用)将应用部署到Google Play商店。Expo生成一个aab文件,我可以将其上传到商店。但它似乎没有被混淆。阅读Expo文档,我不知道如何在我的构建过程中定义它。如果我正确理解了文档,我应该在eas.json文件中定义它,还是我误解了?但是我不知道代码应该是什么样的,有什么建议吗?
yhxst69z1#
按照以下步骤操作
1.确保安装了expo-build-properties,或根据需要安装:第一个月1.在app.json/app.config.js中更改此依赖关系:
app.json
app.config.js
"plugins": [ "expo-build-properties" ]
到
"plugins": [ [ "expo-build-properties", { "android": { "enableProguardInReleaseBuilds": true } } ] ]
经过这些步骤后,它应该是模糊的。https://docs.expo.dev/versions/latest/sdk/build-properties/#example-appjson-with-config-plugin
1条答案
按热度按时间yhxst69z1#
按照以下步骤操作
1.确保安装了expo-build-properties,或根据需要安装:第一个月
1.在
app.json
/app.config.js
中更改此依赖关系:到
经过这些步骤后,它应该是模糊的。https://docs.expo.dev/versions/latest/sdk/build-properties/#example-appjson-with-config-plugin