0

I have a trouble at uploading a AIR iOS app, it always say: "Invalid Profile: distribution build entitlements must have get-task-allow set to false."

step 1:

I package the app with the adhoc provision file, failed.

step 2:

I added something to xml file.

<iPhone>
    <InfoAdditions><![CDATA[
        <key>Entitlements</key>
            <dict>
                <key>get-task-allow</key>
                <false/>
            </dict>
....

still failed.

Community
  • 1
  • 1
blackgun
  • 411
  • 1
  • 5
  • 16
  • See if this question has the same case with you: http://stackoverflow.com/questions/10435697/testflight-rejecting-build-get-task-allow-error – Raptor Dec 28 '12 at 07:32

1 Answers1

0
<iPhone>
    <InfoAdditions><![CDATA[


        <key>UIDeviceFamily</key>
        <array>
            <!-- iPhone support -->
            <string>1</string> 
            <!-- iPad support -->
            <!--<string>2</string>-->
        </array>
    ]]></InfoAdditions>

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

        ]]>
    </Entitlements>
    <requestedDisplayResolution>high</requestedDisplayResolution>
</iPhone>
blackgun
  • 411
  • 1
  • 5
  • 16