-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.xml
24 lines (24 loc) · 886 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="net.coconauts.watchduino2" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Watchduino</name>
<description>
Watchduino Android manager
</description>
<author email="[email protected]" href="http://coconauts.net">
Coconauts
</author>
<icon src="www/img/logo.png" />
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" version="1" />
<access origin="*"/>
<allow-navigation href="*"/>
<allow-intent href="*"/>
<platform name="android">
<allow-intent href="market:*" />
<preference name="AndroidLaunchMode" value="singleTask" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>