Hello everyone I’m trying to submit an app to Itunes connect and I want to be able to use new apple testflight application. Currently the old Testflight doesnt seem to be working for IOS8 so I decided to try the new one. I already regenerated my certificates and provisioning profiles but I still get the message “Build 3.1 does not contain the correct beta entitlement. For more information, see the iTunes Connect Developer Guide.”. While doing some research I came across this post on stackoverflow:
"Apple gave us a little surprise yesterday without telling us. There is a new entitlement that is added when you regenerate your distribution certificate. When you regenerate, as others said, it should fix your problem. It’s not due to magic though, it’s because the missing entitlement is now there beta-reports-active = 1
Once you download your new provisioning profile, make sure the entitlement is there, rebuild your IPA and this warning should finally go away. If you manage your own Entitlements.plist be sure to include this new key.
<?xml version=“1.0” encoding=“UTF-8”?>
<!DOCTYPE plist PUBLIC “-//Apple//DTD PLIST 1.0//EN” "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version=“1.0”>
<dict>
<key>aps-environment</key>
<string>production</string>
<key>get-task-allow</key>
<false/>
<key>beta-reports-active</key>
<true/>
<key>application-identifer</key>
<string>bkahblahblah</string>
</dict>
</plist> "
http://stackoverflow.com/questions/25756669/app-does-not-contain-the-correct-beta-entitlement
Since I already tried regenerating my provisioning profiles like 10 times and it still doesn’t work do anyone knows if this is something that is wrong on the Corona sdk side? Maybe when building the app is not including that new “beta entitlement”? I could be wrong but Idk what to do at this point. If Anyone has any information please let me know.