I am trying to build an app with the Corona Simulator “Build for iOS” and I keep getting this warning:
“This bundle is invalid. The application-identifier entitlement is not formatted correctly; it should contain your 10-character App ID Seed, followed by a dot, followed by your bundle identifier”
I had this exact same problem. I got the exact same error in my project. It would run just fine in the simulator, but fail in the build with the identifier error. As it turned out in my case, I had a binary (.app) from one of my other builds in the game’s directory. When I removed it, the build succeeded. I wonder if this is a security issue that prevents executables from being copied into the build. Anyways, hope this helps anyone that is having this problem. [import]uid: 75797 topic_id: 9085 reply_id: 46974[/import]
It’s my understanding that you don’t have to include the CFBundleIdentifer in the build.settings file. The fact that you sign it with your distribution provision key identifies the bundle. [import]uid: 7559 topic_id: 9085 reply_id: 49945[/import]
When you create your provisioning profile for distribution in iTunes Connect, you choose the bundle identifier you want to associate that profile with there (separate from the Corona build process).
Then, when you go to build your Corona project using the simulator, you choose your provisioning profile from the drop-down and Corona will use the bundle identifier that’s associated with it automatically.
So to answer your question, your bundleID should not be specified in build.settings or any other Lua file. [import]uid: 52430 topic_id: 9085 reply_id: 49991[/import]