提问人:Mukesh 提问时间:11/14/2023 更新时间:11/14/2023 访问量:18
使用 expo 创建的带有 nodejs 应用程序的 react-native 生成 APK
Generate APK for a react-native with nodejs application created using expo
问:
我需要为使用 expo 创建的 react-native 和 NodeJs 应用程序生成 APK 构建。
我尝试使用eas build -p android --profile preview
我已经设法创建了一个APK,但是当我尝试在Android模拟器和手机中运行它时,它不起作用。还有别的办法吗?
eas.json: { "build": { "preview": { "android": { "buildType": "apk" } }, "preview2": { "android": { "gradleCommand": ":app:assembleRelease" } }, "preview3": { "developmentClient": true }, "production": {} } }
答:
0赞
Thomasino73
11/14/2023
#1
尝试将以下内容添加到对象内的文件中,eas.json
preview
"distribution": "internal",
在运行命令进行构建之前,请尝试运行以下命令
cd android & ./gradlew 清洁
执行此命令后,运行以下命令
EAS 构建 --profile preview --platform android
如果遇到相同的错误,请尝试使用 进行调试。这将为您提供有关您的应用程序如何以及为什么不起作用的更多信息!adb
评论