react-native/packages/helloworld/.react-native.config
Blake Friedman d6e8c061cd fix: ios Helloworld assumes community cli is present (#45221)
Summary:
Use the hard-coded config for Helloworld instead of assuming the community cli is there to generate a config, which we can no longer assume.

Changelog: [Internal]

Pull Request resolved: https://github.com/facebook/react-native/pull/45221

Test Plan:
This works in my local environment:
```
bundle exec pod install
```
and
```
./gradlew generateAutolinkingPackageList
```
Changelog: [Internal]

Reviewed By: javache

Differential Revision: D59162715

Pulled By: blakef

fbshipit-source-id: 95ff2c3929f12ee0ecf468cb80d2df1281eb746e
2024-06-28 12:05:14 -07:00

27 lines
582 B
Plaintext

{
"reactNativePath": "REACT_NATIVE_PATH",
"reactNativeVersion": "1000.0.0",
"root": "HELLOWORLD_PATH",
"dependencies": {},
"platforms": {
"ios": {},
"android": {}
},
"project": {
"ios": {
"sourceDir": "HELLOWORLD_PATH/ios",
"xcodeProject": {
"name": "HelloWorld.xcworkspace",
"isWorkspace": true
}
},
"android": {
"sourceDir": "HELLOWORLD_PATH/android",
"appName": "app",
"packageName": "com.helloworld",
"applicationId": "com.helloworld",
"mainActivity": ".MainActivity"
}
}
}