Errors while building for iOS
See original GitHub issueEnvironment
exp diagnostics
Environment: OS: Windows 10 Node: 8.1.2 Yarn: 1.2.1 npm: 5.6.0 Watchman: Not Found Xcode: N/A Android Studio: Version 2.3.0.0 AI-162.4069837
Packages: (wanted => installed) expo: ^24.0.0 => 24.0.2 react: 16.0.0 => 16.0.0 react-native: https://github.com/expo/react-native/archive/sdk-24.0.0.tar.gz => 0.51.0
Diagnostics report: https://exp-xde-diagnostics.s3.amazonaws.com/clementino36-1288ae7a-a9b8-4612-9613-def97f2da95f.tar.gz
Steps to Reproduce
exp build:ios -c
I’m not sure where to run EXP_DEBUG=true
, i’ve tried EXP_DEBUG=true exp build:ios -c
but it gives me 'EXP_DEBUG' is not recognized as an internal or external command
.
I’ve also tried putting it in my .env.production
file but it doesn’t log anything.
Here’s my app.json:
{
"expo": {
"sdkVersion": "24.0.0",
"privacy": "unlisted",
"name": "Aidoo Technician",
"icon": "./src/assets/commons/boilerplate_icon.png",
"splash": {
"image": "./src/assets/commons/splashscreen.png",
"resizeMode": "cover"
},
"orientation": "portrait",
"version": "1.0.0",
"slug": "aidoo-technician-prod",
"ios": {
"bundleIdentifier": "com.emixis.aidooTechnician",
"supportsTablet": true
},
"android": {
"package": "com.emixis.aidooTechnician",
"versionCode": 1,
"permissions": [
"CAMERA"
]
}
}
}
My exp version is 49.2.2. Thanks!
Issue Analytics
- State:
- Created 6 years ago
- Comments:14 (7 by maintainers)
Hi @rishiankush - you need to set it in your terminal window, e.g.
EXPO_DEBUG=true exp build:ios
on mac/linux orfor windows.
However, this won’t actually change the behavior of exp at all, it will just output a bit more information for debugging purposes. If you’re having trouble, it’s best to post on our forums or open a new issue, as this one has been resolved.
The reason for the
dig
command to fail was my Firewall. I disabled it and it worked fine, i’m now able to runexp build:ios
smoothly. Thanks again 😃