publishing app into ipa file

So I followed this guide to make apk file and now trying to make an ipa file as well but got stuck at apple ID credentials verification:

Error: spawn C:\Windows\system32\bash.exe ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:201:19)
at onErrorNT (internal/child_process.js:379:16)
at process._tickCallback (internal/process/next_tick.js:178:19)

would just like to confirm if this error is related to the way I configure the app.json or the ID setup itself?

I’m using expo 51.4.0 and here’s the app.json:

{
  "expo": {
    "sdkVersion": "27.0.0",
    "name": "WAMS",
    "description": "This is a test publish",
    "slug": "WAMS",
    "privacy": "public",
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.CBN.WAMS"
    },
    "android": {
      "package": "com.CBN.WAMS"
    }
  }
}

Thanks in advance! :slight_smile:

It looks like bash isn’t being found. Can you check whether or not it exists at that location?

No it doesn’t apparently…
Thanks for the information! :smile:
Should I be asking here how to solve this? haha (sorry I’m a noob)

Ask away, but I don’t know either :slight_smile:
Maybe try a web search for “install bash” and whatever version of windows you are running

doing that right now, thanks for the prompt reply! :smiley:

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.