-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
35 lines (24 loc) · 1012 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "me.pictrip.app"
versionCode="1"
version = "0.0.1">
<!-- versionCode is optional and Android only -->
<name>Pictrips</name>
<description>
Application that allow people to share and view photos from around the world
</description>
<author href="http://pictrip.com" email="[email protected]">
Grégory Meis
</author>
<access origin="http://pictrip.com" />
<preference name="Fullscreen" value="false" />
<preference name="HideKeyboardFormAccessoryBar" value="true"/>
<gap:platform name="android" />
<gap:plugin name="org.apache.cordova.device" version="0.2.8" />
<gap:plugin name="org.apache.cordova.camera" version="0.2.9" />
<feature name="Camera">
<param name="android-package" value="org.apache.cordova.CameraLauncher" />
</feature>
</widget>