我正在尝试将Hello World example添加到我的服务器上的自定义存储库中,但该应用程序不会显示在Boxee中,我无法弄清楚我做错了什么。我可以看到存储库但不能看到应用程序。这是我的配置:
服务器/回购/的repository.xml
<repository>
<id>com.server</id>
<url>server</url>
<name>My repository</name>
<thumb>thumb.png</thumb>
<description>My Boxee app reposiory.</description>
</repository>
服务器/回购/ INDEX.XML
<apps>
<app>
<id>com.server.hello</id>
<name>Hello World</name>
<version>1.0</version>
<description>Test application</description>
<thumb>thumb.png</thumb>
<repositoryid>com.server</repositoryid>
<repository>server</repository>
<media>video</media>
<author>Me</author>
<copyright>Me</copyright>
<email>me@me.com</email>
<type>skin</type>
<startWindow>14000</startWindow>
<platform>all</platform>
<minversion>0.9.14</minversion>
</app>
</apps>
实际应用位于server/repo/download
且名为com.server.hello-1.0.zip
答案 0 :(得分:0)
<url>server</url>
repo / index.html中缺少标记。所以该应用程序不知道从哪里开始。这样做能解决你的问题吗?