pndnotifyd: fix some crashes
[pandora-libraries.git] / docs / examples / minimum-schema_PXML.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- This is a minimum example that will validate with the schema but basically offer nothing beside what really is required. This application should work nicely with any pnd repositories based upon the PXML specs.
3      NOTE: This application will not work with pre HF6, for support for OS versions up to HF6 an additional <title> block outside of <titles> is required!-->
4 <PXML xmlns="http://openpandora.org/namespaces/PXML">
5   <package id="sample-package">
6     <version major="1" minor="17" release="3" build="4"/>
7     <author name="the authors name"/>
8     <titles>
9       <title lang="en_US">Sample Application</title>
10     </titles>
11   </package>
12   
13   <application id="sample-app">
14     <exec command="run.sh"/>
15     <titles>
16       <title lang="en_US">Sample Application</title>
17     </titles>
18         <!--<title lang="en_US">Sample Application</title>--> <!--Extra block for compatibility with OS versions before HF6-->
19     <author name="the authors name"/>
20     <version major="1" minor="17" release="3" build="4"/>
21     <licenses>
22       <license name="other"/>
23     </licenses>
24     <categories>
25       <category name="Game"/>
26     </categories>
27   </application>
28 </PXML>