forked from krisrak/jquery-cordova-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
intelxdk.config.xml
42 lines (29 loc) · 1.23 KB
/
intelxdk.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
40
41
42
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:intelxdk="http://services.html5tools-software.intel.com/ns/intelxdk"
id = "com.cordova.oauth2"
versioncode = "10"
version = "1.0.0">
<name>oauth2</name>
<description>
Oauth2 in Cordova using IntelXDK
</description>
<author href="http://initlabs.com">
Rakshith Krishnappa
</author>
<content src="index.html" />
<access origin="*" />
<!-- iOS -->
<!-- iOS specific configuration -->
<preference name="ios-configuration" value="adhoc" />
<intelxdk:provisioning intelxdk:src="prov/Intel_Distribution_Profile.mobileprovision" intelxdk:type="adhoc" />
<!-- Android -->
<!-- Android specific configuration -->
<!-- Windows Phone 8 -->
<!-- Windows Phone 8 specific configuration -->
<preference name="windows-publisher-id" value="PUBID" />
<preference name="windows-publisher-display-name" value="appname" />
<!-- Plugins -->
<!-- Standard Cordova Plugins -->
<intelxdk:plugin intelxdk:name="In App Browser" intelxdk:value="org.apache.cordova.inappbrowser" intelxdk:version="0.3.0" />
</widget>