-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.xml
More file actions
executable file
·119 lines (93 loc) · 6.5 KB
/
config.xml
File metadata and controls
executable file
·119 lines (93 loc) · 6.5 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.ponyvillelive.pvlmobile"
version = "2.0.8">
<name>Ponyville Live!</name>
<description>
The mobile application for the Ponyville Live! network.
Ponyville Live! is the pony world's largest media network, featuring 24/7 pony radio, video, podcasts, convention coverage, and much more. Log in and pony on.
Ponyville Live! - Bringing Pony People Together
</description>
<author href="http://poniverse.net" email="hello@poniverse.net">
Poniverse
</author>
<content src="index.html"/>
<access origin="*"/>
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="BackupWebStorage" value="none"/>
<feature name="http://api.phonegap.com/1.0/device" />
<feature name="Device">
<param name="android-package" value="org.apache.cordova.device.Device" />
</feature>
<feature name="Media">
<param name="android-package" value="org.apache.cordova.AudioHandler" />
<param name="ios-package" value="CDVSound" />
</feature>
<feature name="NetworkStatus">
<param name="android-package" value="org.apache.cordova.networkinformation.NetworkManager" />
<param name="ios-package" value="CDVConnection" />
</feature>
<feature name="StatusBar">
<param name="ios-package" value="CDVStatusBar" onload="true"/>
</feature>
<feature name="InAppBrowser">
<param name="android-package" value="org.apache.cordova.inappbrowser.InAppBrowser" />
<param name="ios-package" value="CDVInAppBrowser" />
</feature>
<preference name="permissions" value="none"/>
<!-- Customize your app and platform with the preference element. -->
<preference name="orientation" value="portrait" /> <!-- all: default means both landscape and portrait are enabled -->
<preference name="target-device" value="handset" /> <!-- all: possible values handset, tablet, or universal -->
<preference name="fullscreen" value="false" /> <!-- all: hides the status bar at the top of the screen -->
<preference name="webviewbounce" value="false" /> <!-- ios: control whether the screen 'bounces' when scrolled beyond the top -->
<preference name="prerendered-icon" value="true" /> <!-- ios: if icon is prerendered, iOS will not apply it's gloss to the app's icon on the user's home screen -->
<preference name="stay-in-webview" value="true" /> <!-- ios: external links should open in the default browser, 'true' would use the webview the app lives in -->
<preference name="ios-statusbarstyle" value="default" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<preference name="detect-data-types" value="false" /> <!-- ios: controls whether data types (such as phone no. and dates) are automatically turned into links by the system -->
<preference name="exit-on-suspend" value="false" /> <!-- ios: if set to true, app will terminate when home button is pressed -->
<preference name="show-splash-screen-spinner" value="false" /> <!-- ios: if set to false, the spinner won't appear on the splash screen during app loading -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<preference name="android-minSdkVersion" value="14" /> <!-- android: MIN SDK version supported on the target device. MAX version is blank by default. -->
<preference name="android-installLocation" value="auto" /> <!-- android: app install location. 'auto' will choose. 'internalOnly' is device memory. 'preferExternal' is SDCard. -->
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<!-- Plugins can also be added here. -->
<!--
<gap:plugin name="Example" />
A list of available plugins are available at https://build.phonegap.com/docs/plugins
-->
<gap:plugin name="org.apache.cordova.device" />
<gap:plugin name="org.apache.cordova.network-information" />
<gap:plugin name="org.apache.cordova.media" />
<gap:plugin name="org.apache.cordova.inappbrowser" />
<gap:plugin name="de.appplant.cordova.plugin.local-notification" />
<plugin name="Media" value="org.apache.cordova.AudioHandler" />
<!--
<gap:plugin name="org.apache.cordova.dialogs" />
<gap:plugin name="org.apache.cordova.vibration" />
<gap:plugin name="org.apache.cordova.splashscreen" />
-->
<!-- Define app icon for each platform. -->
<icon src="www/img/logo.png" />
<icon src="www/res/android/res/drawable-ldpi/Icon.png" gap:platform="android" gap:density="ldpi" />
<icon src="www/res/android/res/drawable-mdpi/Icon.png" gap:platform="android" gap:density="mdpi" />
<icon src="www/res/android/res/drawable-hdpi/Icon.png" gap:platform="android" gap:density="hdpi" />
<icon src="www/res/android/res/drawable-xhdpi/Icon.png" gap:platform="android" gap:density="xhdpi" />
<icon src="www/res/ios/icon/icon-57.png" gap:platform="ios" width="57" height="57" />
<icon src="www/res/ios/icon/icon-72.png" gap:platform="ios" width="72" height="72" />
<icon src="www/res/ios/icon/icon-57-2x.png" gap:platform="ios" width="114" height="114" />
<icon src="www/res/ios/icon/icon-72-2x.png" gap:platform="ios" width="144" height="144" />
<!--
Define access to external domains.
<access /> - a blank access tag denies access to all external resources.
<access origin="*" /> - a wildcard access tag allows access to all external resource.
Otherwise, you can specify specific domains:
-->
<access origin="http://127.0.0.1*" /> <!-- allow local pages -->
<access origin="http://ponyvillelive.com*" subdomains="true" />
<access origin="https://ponyvillelive.com*" subdomains="true" />
<access origin="*" /> <!-- Required for radio to function -->
<allow-navigation href="*" /> <!-- Required for internet on new Cordova ~tinker -->
</widget>