(iOS) Incorrect warning of CFBundleIdentifier.

Corona SDK Build 591.

After I manually set my CFBundleIdentifier the Corona compiler reports a warning saying that the identifier is incorrectly formatted.
This is not the case. I set my identifier according to the format “com.company.appname” which is a perfectly legal format.
[import]uid: 70847 topic_id: 13539 reply_id: 313539[/import]

OK, I’ve found out the reason, and a solution for this behavior…
I was using a wildcard provisioning profile which was causing the problem.

You shouldn’t need to manually set the CFBundleIdentifier in your build.settings, as this value is read from the provisioning profile you use to sign your app with.
To solve this problem just create an App ID that is unique for your app making sure you specify the full Bundle ID as the App ID suffix.

After the new App ID is created, you just need to make two new provisioning profiles (development and distribution) using this new app ID.
[import]uid: 70847 topic_id: 13539 reply_id: 50335[/import]

thanks for sharing. I had exactly the same situation as you and your solution worked for me as well. [import]uid: 95911 topic_id: 13539 reply_id: 63898[/import]