Error loading Adobe AIR App Store: invalid code entry rights ... "get-task-allow" (

I have been trying to download a version of my game in the AppStore in the last two days.
I keep getting the following errors:

ERROR ITMS-90164: "Invalid code signing rights. The rights in your application package signature do not match those in the provisioning profile. According to the provisioning profile, the package contains a key value that is not allowed:" true "for the key" get-task -allow "in" Payload / Game.app / Game "

ERROR ITMS-90179: "Invalid code signature. The executable file" Payload / Game.app / Game "must be signed with a certificate that is contained in the preparation profile."

Using FlashDevelop, Air 19.0 (taking into account the latest problems in AIR 20.0 - 21.0).

I did not include the get-task-allow tag in my application.xml, I double-checked my certificates, configuration profiles, etc., and even recreated them, but nothing seems to work ...

I like the problem with certificates, but I can not find the problem.

+5
source share
4 answers

I had an error ERROR ITMS-90164: "Invalid code entry rights" with the key-get-task-allow, and I just made both a clean and a clean build folder, and I was able to upload to the App Store without any problems. Interesting that before I did a check for a problem ipa, and it passed the App Store check, but it was not possible to load the actual download after the file was downloaded.

+22
source

I had the same problem and solved it with a simple Product -> Clean.

+2
source

In your xml application descriptor, try adding the access right for help.

<iPhone> <Entitlements><![CDATA[ <key>get-task-allow</key><false/> ]]></Entitlements> <!-- <Entitlements> </iPhone> 

And yes, it looks like you're mixing certificates and profiles somewhere along the line.

Are you sure you are using the AppStore profile? (i.e. not AdHoc or development).

+1
source

Yes - I use the AppStore profile.

After some testing, I deleted all certificates, mobile backups, etc. and recreated them. I also followed this advice: ITMS - 90179 Invalid code signing / ITMS - 90209 Segment alignment incorrect

And now it works. Apple voodoo ...

0
source

Source: https://habr.com/ru/post/1245540/


All Articles