app doesn't work ":CFBundleIdentifier", Does Not Exist

nally got this working after reading @dmitrye 's comment. These steps just have a slight twist to @gvlamadrid 's instructions
How I fixed it.
rm -rf ios/build
Go to File -> Project settings
Click the Advanced button
Select "Custom" and select "Relative to Workspace" in the pull down
When I selected this option it defaulted my paths to Build/Products and Build/Intermediates. I had to manually change these to build/Build/Products and build/Build/Intermediates

Seems the run-ios command was looking for the app in ios/build/Build/Products when it was actually being placed in ios/Build/Products. Just a hunch but maybe this has something to do with the way that mac ignores case when dealing with paths on the command line? Could be leading to the run-ios command getting tripped up. Or maybe the default path is just wrong.

你可能感兴趣的:(app doesn't work ":CFBundleIdentifier", Does Not Exist)