AdobeAIR Android电视-缺少图标文件

AdobeAIR Android电视-缺少图标文件,android,air,adobe,television,Android,Air,Adobe,Television,我有一个应用程序,是在安卓系统完美的工作,但我需要在安卓电视工作。这是我的XML <?xml version="1.0" encoding="utf-8" standalone="no" ?> <application xmlns="http://ns.adobe.com/air/application/33.1"> <id>iScreen.android.tv</id&

我有一个应用程序,是在安卓系统完美的工作,但我需要在安卓电视工作。这是我的XML

<?xml version="1.0" encoding="utf-8" standalone="no" ?>
<application xmlns="http://ns.adobe.com/air/application/33.1">
  <id>iScreen.android.tv</id>
  <versionNumber>2.5.8</versionNumber>
  <versionLabel>2.5.8</versionLabel>
  <filename>iScreen TV</filename>
  <description/>
  <name>iScreen TV</name>
  <copyright/>
    
  <initialWindow>
    <content>iScreen.swf</content>
    <systemChrome>standard</systemChrome>
    <transparent>false</transparent>
    <visible>true</visible>
    <fullScreen>false</fullScreen>
    
    <renderMode>cpu</renderMode>
    <autoOrients>true</autoOrients></initialWindow>
  <icon>
    <image36x36>AppIconsForPublish/36x36.png</image36x36>
    <image48x48>AppIconsForPublish/48x48.png</image48x48>
    <image72x72>AppIconsForPublish/72x72.png</image72x72>
    <image96x96>AppIconsForPublish/96x96.png</image96x96>
    <image144x144>AppIconsForPublish/144x144.png</image144x144>
    <image192x192>AppIconsForPublish/192x192.png</image192x192>
  </icon>
  <customUpdateUI>false</customUpdateUI>
  <allowBrowserInvocation>false</allowBrowserInvocation>
  <android>
    <manifestAdditions><![CDATA[<manifest>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
</manifest>]]></manifestAdditions>
      <supportsAndroidTV>true</supportsAndroidTV>
      <banner>AppIconsForPublish/banner_tv.png</banner>
  </android>
  
</application>

iScreen.android.tv
2.5.8
2.5.8
iScreen电视
iScreen电视
iScreen.swf
标准
假的
真的
假的
中央处理器
真的
AppIconsForPublish/36x36.png
AppIconsForPublish/48x48.png
AppIconsForPublish/72x72.png
AppIconsForPublish/96x96.png
AppIconsForPublish/144x144.png
AppIconsForPublish/192x192.png
假的
假的
]]>
真的
AppIconsForPublish/banner_tv.png
Adobe向我显示此消息“创建文件时出错。图标文件丢失”(仅当我写下“
AppIconsForPublish/banner_tv.png
”行时,此消息才会出现)

我需要做什么