50 lines
1.5 KiB
XML
50 lines
1.5 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<!--
|
||
|
Widget Configuration Reference:
|
||
|
http://docs.blackberry.com/en/developers/deliverables/15274/
|
||
|
-->
|
||
|
|
||
|
<widget xmlns="http://www.w3.org/ns/widgets"
|
||
|
xmlns:rim="http://www.blackberry.com/ns/widgets"
|
||
|
version="0.1.0">
|
||
|
|
||
|
<name>Todo.txt Enyo</name>
|
||
|
|
||
|
<author href="http://monkeystew.org" rim:copyright="Copyright 2012 Morgan McMillian">Morgan McMillian</author>
|
||
|
|
||
|
<description>
|
||
|
A mobile application for managing your todo.txt file written using the EnyoJS framework.
|
||
|
</description>
|
||
|
|
||
|
<license href="http://www.apache.org/licenses/LICENSE-2.0">
|
||
|
</license>
|
||
|
|
||
|
<feature id="blackberry.io.dir" required="true" version="1.0.0.0" />
|
||
|
<feature id="blackberry.io.file" required="true" version="1.0.0.0" />
|
||
|
<feature id="blackberry.utils" required="true" version="1.0.0.0" />
|
||
|
<feature id="blackberry.invoke" required="true" version="1.0.0.0" />
|
||
|
|
||
|
<!-- PhoneGap API -->
|
||
|
<access subdomains="true" uri="file:///store/home" />
|
||
|
<access subdomains="true" uri="file:///SDCard" />
|
||
|
|
||
|
<!-- Expose access to all URIs, including the file and http protocols -->
|
||
|
<access subdomains="true" uri="*" />
|
||
|
|
||
|
<icon src="icon.png" />
|
||
|
|
||
|
<rim:loadingScreen backgroundColor="#000000"
|
||
|
foregroundImage="icon.png"
|
||
|
onFirstLaunch="true">
|
||
|
<rim:transitionEffect type="fadeOut" />
|
||
|
</rim:loadingScreen>
|
||
|
|
||
|
<content src="index.html" />
|
||
|
|
||
|
<rim:permissions>
|
||
|
<rim:permit>access_shared</rim:permit>
|
||
|
</rim:permissions>
|
||
|
|
||
|
</widget>
|