XCode should build the project
Build is failing:
fatal error: module map file '/Users/me/Library/Developer/Xcode/DerivedData/myapp-coktmzdtbaovyjfokbdvhvmbqdjl/Build/Products/Debug-iphonesimulator/react-native-ble-plx-swift/react_native_ble_plx_swift.modulemap' not found
I followed the guide on GitHub and also this guide:
tutorial
package.json:
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
},
"dependencies": {
"expo": "^32.0.0",
"expokit": "^32.1.1",
"react": "16.5.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-32.0.0.tar.gz",
"react-native-ble-plx": "^1.0.3"
},
"devDependencies": {
"babel-preset-expo": "^5.0.0"
},
"private": true
}
So turns out i needed to launch the application from the workspace project in XCode. Opening the workspace project and hitting the 'Play' button got the application up and running.
I'm quite new to IOS development, so i guess this was one of the first hurdles.
Resolved with the above comment.