-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.xml
35 lines (33 loc) · 1.38 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8" ?>
<widget
id = "com.todoapp"
version = "1.1.7" >
<!-- versionCode is optional and Android only -->
<name>Todo App</name>
<description>
A simple task manager built with js/ionic/cordova.
</description>
<author href="https://twitter.com/Alephbreno" email="[email protected]">
Aleph Melo
</author>
<preference name="permissions" value="none"/>
<feature name="http://api.phonegap.com/1.0/notification"/>
<preference name="android-minSdkVersion" value="10" />
<preference name="android-maxSdkVersion" value="21" />
<preference name="fullscreen" value="true" />
<feature name="http://api.phonegap.com/1.0/network"/>
<!--
If you do not want any permissions to be added to your app, add the
following tag to your config.xml; you will still have the INTERNET
permission on your app, which PhoneGap requires.
-->
<!-- to enable individual permissions use the following examples -->
<!--
<feature name="http://api.phonegap.com/1.0/battery"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
-->
</widget>