-
Notifications
You must be signed in to change notification settings - Fork 94
Troubleshooting
Tommy Nguyen edited this page Nov 4, 2020
·
15 revisions
This can occur if your package is iOS specific, i.e. it contains no ios
folder with an Xcode project. react-native config
cannot detect your package if this is missing. We can work around it by adding a dummy project to react-native.config.js
at the root of the package:
module.exports = {
project: {
ios: {
project: "ReactTestApp-Dummy.xcodeproj",
},
},
};