ios – My expo go don’t run regionally in simulator anymore

0
16
ios – My expo go don’t run regionally in simulator anymore


I’ve been constructing a cellular app utilizing expo.
the whole lot was high quality till the primary time I used EAS Construct.

After I attempted EAS Construct, my expo go can’t run regionally anymore, the simulator would say “that is taking for much longer than it ought to, you would possibly need to test your web connectivity”.

Based mostly on the reply I checked from right here, everybody recommend I ought to run it with tunnel

And certainly, the one approach I can run it now could be utilizing tunnel

Nonetheless, With tunnel, all of the adjustments 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 perhaps 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, drawback stays nonetheless

what do I must do to revert this ?

Am I lacking one thing right here

I really want some assist right here

this situation been holding again my growth course of for days 🙁
I’ve discovered seldom related situation 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 beneath

{
  "expo": {
    "title": "cellular",
    "slug": "cellular",
    "model": "1.0.0",
    "orientation": "portrait",
    "icon": "./belongings/photos/icon/frequent/emblem.png",
    "scheme": "dot",
    "userInterfaceStyle": "automated",
    "newArchEnabled": true,
    "splash": {
      "picture": "./belongings/photos/icon/Home_Icon.png",
      "resizeMode": "include",
      "backgroundColor": "#252525"
    },
    "ios": {
      "supportsTablet": true,
      "infoPlist": {
        "NSLocationWhenInUseUsageDescription": "We'd like 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"
    ]
  },
  "internet": {
    "bundler": "metro",
    "output": "static",
    "favicon": "./belongings/photos/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
  }
}

LEAVE A REPLY

Please enter your comment!
Please enter your name here