Hola, estoy intentando compilar una aplicación para subir a iTunes Connect con Flash CC, pero me salta el error: "Entrada no válida".
Únicamente me pasa al compilar para distribución o para AdHoc, cuando compilo para desarrollo funciona perfectamente generando el .ipa correspondiente e instalándolo en dispositivos.
El descriptor de la aplicación que genera es el siguiente:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<application xmlns="http://ns.adobe.com/air/application/16.0">
<id>com.domain.nameapp</id>
<versionNumber>0.1</versionNumber>
<filename>Name App</filename>
<description></description>
<!-- To localize the description, use the following format for the description element.
<description>
<text xml:lang="en">English App description goes here</text>
<text xml:lang="fr">French App description goes here</text>
<text xml:lang="ja">Japanese App description goes here</text>
</description>
-->
<name>Name App</name>
<!-- To localize the name, use the following format for the name element.
<name>
<text xml:lang="en">English App name goes here</text>
<text xml:lang="fr">French App name goes here</text>
<text xml:lang="ja">Japanese App name goes here</text>
</name>
-->
<copyright></copyright>
<initialWindow>
<content>NameApp.swf</content>
<systemChrome>standard</systemChrome>
<transparent>false</transparent>
<visible>true</visible>
<fullScreen>true</fullScreen>
<autoOrients>true</autoOrients>
<aspectRatio>landscape</aspectRatio>
<renderMode>direct</renderMode>
</initialWindow>
<customUpdateUI>false</customUpdateUI>
<allowBrowserInvocation>false</allowBrowserInvocation>
<icon>
<image50x50>AppIcon/Icon-Small-50.png</image50x50>
<image58x58>AppIcon/Icon-Small@2x.png</image58x58>
<image100x100>AppIcon/Icon-Small-50@2x.png</image100x100>
<image144x144>AppIcon/Icon-72@2x.png</image144x144>
<image1024x1024>AppIcon/iTunesArtwork@2x.png</image1024x1024>
<image40x40>AppIcon/Icon-Small-40.png</image40x40>
<image76x76>AppIcon/Icon-76.png</image76x76>
<image80x80>AppIcon/Icon-Small-40@2x.png</image80x80>
<image120x120>AppIcon/Icon-Small-40@3x.png</image120x120>
<image152x152>AppIcon/Icon-76@2x.png</image152x152>
<image29x29>AppIcon/Icon-Small.png</image29x29>
<image57x57>AppIcon/Icon.png</image57x57>
<image114x114>AppIcon/Icon@2x.png</image114x114>
<image512x512>AppIcon/iTunesArtwork.png</image512x512>
<image48x48>AppIcon/Icon-Small-48.png</image48x48>
<image72x72>AppIcon/Icon-72.png</image72x72>
</icon>
<iPhone>
<requestedDisplayResolution>high</requestedDisplayResolution>
<InfoAdditions><![CDATA[<key>UIDeviceFamily</key>
<array><string>2</string></array>]]></InfoAdditions>
</iPhone>
<supportedLanguages>en</supportedLanguages>
</application>
He probado varias veces a borrar y crear los certificados mobileprovisioning etc. Así que entiendo que el error no debería venir de ahí, pero no entiendo que puede estar pasando.
Gracias de antemano.