我正在尝试将Hello示例添加到服务器上的自定义存储库中,但是应用程序不会在Boxee中显示,我也不知道我做错了什么。我可以看到存储库,但看不到应用程序。这是我的配置:
server/repo/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>server/repo/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。
发布于 2012-02-23 17:40:14
是的,这对我来说也是一个令人兴奋的时刻.(命名it和相同的版本号.),除了
<url>server</url>标签丢失在repo/index.html中。所以这个应用程序不知道从哪里开始。这解决了你的问题吗?
https://stackoverflow.com/questions/8870172
复制相似问题