Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.14 KB

README.md

File metadata and controls

53 lines (40 loc) · 1.14 KB

PoC for React-native #34064

PoC for facebook/react-native#34064 demonstrating iOS build failure on React-RCTText. Expo modules are used.

Build:

yarn install
npx pod-install
npx react-native run-ios  # or build with XCode

How to recreate this repo

npx react-native init rnProc --version 0.68.2  # has to use this version as 0.69.0 fails
npx install-expo-modules
/bin/rm -rf node_modules ios/Pods ios/Podfile.lock
yarn install
npx pod-install

Testing unreleased expo

git clone --recursive https://github.com/expo/expo.git /tmp/expo && cd /tmp/expo
npm run setup:native

Edit package.json

"dependencies": {
  "expo": "file:/tmp/expo/packages/expo"
}

Run

yarn install
npx pod-install

Related issues