Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(xplat): switch on new arch for xplat-v9 macOS #30847

Merged
merged 9 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions apps/xplat-v9/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,26 @@ cd apps/xplat-v9
yarn windows # or "ios" or "macos" or "android"
```

#### iOS/macOS specific

To be able to run the iOS and macOS app successfully, remember to run this before `yarn ios`/`yarn macos`:

```sh
pod install --project-directory=ios
# OR
pod install --project-directory=macos
```

#### Running the bundler

If Metro (the React Native bundler) doesn't automatically start, open a new terminal window on the same path (`apps/xplat-v9`) and run:

```sh
yarn start
```

If you are having issues with the bundler, you can also try running it with cache resetting: `yarn start --reset-cache`.

## Updating `microsoft/fluentui`

To pull the latest from `microsoft/fluentui`, run the following command:
Expand Down
1 change: 0 additions & 1 deletion apps/xplat-v9/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ require_relative '../node_modules/react-native-test-app/test_app'
workspace 'xplat-v9.xcworkspace'

options = {
:bridgeless_enabled => false,
:fabric_enabled => true,
:hermes_enabled => false,
}
Expand Down
Loading
Loading