Android 无法分析应用程序描述符

Android 无法分析应用程序描述符,android,actionscript-3,air,Android,Actionscript 3,Air,我得到一个错误:无法解析应用程序描述符 在尝试编译成AIR4.0时:(有什么想法吗 我能够在FlashCS5.5中编译,但在切换到cs6.0后,我遇到了问题 我也在尝试使用admob广告,如下图所示。这也可能是错误的根源。这让我发疯,几乎27个小时都没找到解决方案 <?xml version="1.0" encoding="UTF-8" standalone="no" ?> <application xmlns="http://ns.adobe.com/air/applicat

我得到一个错误:无法解析应用程序描述符

在尝试编译成AIR4.0时:(有什么想法吗

我能够在FlashCS5.5中编译,但在切换到cs6.0后,我遇到了问题

我也在尝试使用admob广告,如下图所示。这也可能是错误的根源。这让我发疯,几乎27个小时都没找到解决方案

<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<application xmlns="http://ns.adobe.com/air/application/4.0">
  <id>HappyCutePuppy</id>
  <versionNumber>1.0.8</versionNumber>
  <versionLabel>1</versionLabel>
  <filename>Happy Cute Puppy</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>Happy Cute Puppy</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>HappyCutePuppy.swf</content>
    <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
    <visible>true</visible>
    <fullScreen>true</fullScreen>
    <aspectRatio>landscape</aspectRatio>
    <renderMode>cpu</renderMode>
    <autoOrients>false</autoOrients>
  </initialWindow>
  <icon>
    <image36x36>icons/36.png</image36x36>
    <image48x48>icons/48.png</image48x48>
    <image72x72>icons/72.png</image72x72>
  </icon>
  <customUpdateUI>false</customUpdateUI>
  <allowBrowserInvocation>false</allowBrowserInvocation>
  <manifest android:installLocation="auto">
     <uses-sdk android:targetSdkVersion="11"/>
     <uses-sdk android:minSdkVersion="8"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <application>
       <activity android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:name="com.google.ads.AdActivity"/> 
    </application>
</manifest>
  <android>
    <manifestAdditions>
      <![CDATA[<manifest>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
</manifest>]]>
    </manifestAdditions>
  </android>
  <extensions>
    <extensionID>so.cuo.platform.admob</extensionID>
  </extensions>
</application>

幸福供给
1.0.8
1.
快乐可爱的小狗
快乐可爱的小狗
HappyCutePuppy.swf
标准
假的
真的
真的
景观
中央处理器
假的
icons/36.png
图标/48.png
图标/72.png
假的
假的
]]>
so.cuo.platform.admob
在查看时,他们声明android部件如下:

<android> 
    <colorDepth>...</colorDepth> 
    <manifestAdditions 
            <manifest>...</manifest> 
        ]]> 
    </manifestAdditions 
</android>

... 

出现了什么错误消息?您使用哪个版本的sdk?