Adobe Air Android TV-缺少图标文件

问题描述

我有一个可以在Android上完美运行的应用程序,但我需要在Android TV上运行。这是我的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>

然后Adobe向我显示此消息“错误创建文件。缺少图标文件”(该消息仅在我写“ <banner>AppIconsForPublish/banner_tv.png</banner>”行时出现

我需要做什么?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...