-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
39 lines (39 loc) · 1.59 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
36
37
38
39
<?xml version='1.0' encoding='utf-8'?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
xmlns:android = "http://schemas.android.com/apk/res/android"
id = "org.adaptit.testfonts"
versionCode = "1"
version = "0.1.0"
defaultlocale = "en">
<name>testfonts</name>
<description>
A simple app that demonstrates the use of the cordova-plugin-fonts plugin.
</description>
<author email="[email protected]" href="http://adapt-it.org/">
Adapt It Team
</author>
<!-- IMPORTANT / BEFORE BUILDING:
Be sure to add the cordova-fonts plugin and test frameworks:
- cordova plugin add https://github.com/adapt-it/cordova-fonts.git
- cordova plugin add https://github.com/adapt-it/cordova-fonts.git#:/tests
- cordova plugin add http://git-wip-us.apache.org/repos/asf/cordova-plugin-test-framework.git
This makes sure we have the appropriate index.html (i.e., the one in cdvtests, added when the plugins are added)
-->
<content src="cdvtests/index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
</widget>