I’ve an expo-managed app with native packages that runs superb on my simulator with npx expo run:ios
. I may also run it on my bodily system with npx expo run:ios --device
Nevertheless, when I attempt to use eas construct --profile growth --platform ios
, though the construct is completed efficiently, upon scanning the QR code with my iPhone, I get this error:
No bundle URL current.
Be sure you're working a packager server or have included a .jsbundle file in your software bundle.
My eas.json
:
{
"cli": {
"model": ">= 3.17.0"
},
"construct": {
"growth": {
"distribution": "inner",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug"
},
"env": {
"BE_BASE_URL": "https://api.sotravel.me"
}
},
"preview": {
"distribution": "inner"
},
"manufacturing": {
"env": {
"BE_BASE_URL": "https://api.sotravel.me"
}
}
},
"submit": {
"manufacturing": {}
}
}