如何使自定义存储库中的应用程序显示在Boxer中?

时间:2012-01-15 13:59:55

标签: xml boxee

我正在尝试将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

1 个答案:

答案 0 :(得分:0)

是的,这对我来说也是一个激动人心的时刻...... 这一切看起来都很合适(命名ID和相同的版本号..),除了

 <url>server</url>
repo / index.html中缺少

标记。所以该应用程序不知道从哪里开始。这样做能解决你的问题吗?