roninoss / create-expo-stack

CLI tool to initialize a React Native application with Expo. Provides options to include Typescript, file-based routing via Expo Router, configuration based routing via pure React Navigation, styling via Nativewind, Restyle, Unistyles, StyleSheets, or Tamagui, and/or backend as a service such as Firebase and Supabase.
https://rn.new
MIT License
1.59k stars 85 forks source link

Unable to run base project #391

Closed danstepanov closed 3 months ago

danstepanov commented 3 months ago

Expected Behavior

npm run ios should build and run application on iOS simulator

Current Behavior

Screenshot 2024-08-09 at 4 22 41 PM

Possible Solution

idk

Steps to Reproduce

  1. npx create-expo-stack@latest --nativewindui --blank
  2. npx expo prebuild --clean
  3. npm run ios

CES Config File

{
  "cesVersion": "2.11.17",
  "projectName": "my-expo-app",
  "packages": [
    {
      "name": "nativewindui",
      "type": "styling",
      "options": {
        "selectedComponents": ["text"]
      }
    },
    {
      "name": "expo-router",
      "type": "navigation",
      "options": {
        "type": "stack"
      }
    }
  ],
  "flags": {
    "noGit": false,
    "noInstall": false,
    "overwrite": false,
    "importAlias": true,
    "packageManager": "npm",
    "eas": false
  },
  "packageManager": {
    "type": "npm",
    "version": "10.2.3"
  },
  "os": {
    "type": "Darwin",
    "platform": "darwin",
    "arch": "arm64",
    "kernelVersion": "23.5.0"
  }
}
danstepanov commented 3 months ago

iOS 17.5 was not installed, solution was to open project in Xcode, install 17.5, and rerun from step 3

Screenshot 2024-08-09 at 4 28 21 PM