I'm trying to setup native-base in react native app. I have followed all the steps and trying to run App on ios simulator. But I'm getting the error like below.
Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/SAW.app/Info.plist Print: Entry, ":CFBundleIdentifier", Does Not Exist.
what I'm doing wrong? I'm using below versions.
Does native base support react native version 0.56.0 or not?
react-native-cli: 2.0.1 react-native: 0.56.0
{
"name": "SAW",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"@expo/vector-icons": "^6.3.1",
"native-base": "^2.7.2",
"react": "16.4.1",
"react-native": "0.56.0"
},
"devDependencies": {
"babel-jest": "23.4.2",
"babel-preset-react-native": "5.0.2",
"jest": "23.5.0",
"react-test-renderer": "16.4.1"
},
"jest": {
"preset": "react-native"
}
}