I’ve been constructing a cell app utilizing expo.
all the pieces was superb till the primary time I used EAS Construct.
After I attempted EAS Construct, my expo go can not run regionally anymore, the simulator would say “that is taking for much longer than it ought to, you may need to examine your web connectivity”.
And the one manner I can run it now’s utilizing tunnel
Nonetheless, With tunnel, all of the modifications I made to the codebase doesn’t get mirrored immediately, forcing me to reload my app which takes minutes to bundle and obtain from I dunno the place possibly from expo server ?
I’ve already tried to rm -rf iOS android from EAS Construct and I went to expo go dev to delete all of the construct. and I attempted to delete node_modules and reinstall . Sadly, downside stays nonetheless
what do I must do to revert this ?
Am I lacking one thing right here
I actually need some assist right here
this concern been holding again my improvement course of for days 🙁
I’ve discovered seldom related concern on this discussion board, nonetheless it’s both left to be answered or the reply was too very long time in the past doesn’t match in any respect
I put my app.json under
{
"expo": {
"identify": "cell",
"slug": "cell",
"model": "1.0.0",
"orientation": "portrait",
"icon": "./property/photographs/icon/widespread/brand.png",
"scheme": "dot",
"userInterfaceStyle": "automated",
"newArchEnabled": true,
"splash": {
"picture": "./property/photographs/icon/Home_Icon.png",
"resizeMode": "include",
"backgroundColor": "#252525"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "We want your location to show close by service."
},
"bundleIdentifier": "dot"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "",
"backgroundColor": "#ffffff"
},
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION"
],
"package deal": "com.dot"
},
"plugins": [
"expo-router"
]
},
"net": {
"bundler": "metro",
"output": "static",
"favicon": "./property/photographs/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-location",
{
"locationAlwaysAndWhenInUsePermission": "Allow $(PRODUCT_NAME) to use your location."
}
],
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos to let you share them with your friends."
}
],
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
}
}