-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
70 lines (53 loc) · 3.07 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
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
<?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.mossimoradio.livestream"
android-packageName="com.mossimoradio.livestream"
ios-CFBundleIdentifier="com.project9qc.mossimoradio"
versionCode = "17"
version = "2.16.0119"
>
<name>Mossimo Radio</name>
<description>https://github.com/manfuku/mossimoradio</description>
<gap:platform name="android" />
<!--<gap:platform name="ios" />-->
<preference name="permissions" value="none"/>
<!-- IOS PREFS -->
<preference name="fullscreen" value="false" /> <!-- all: hides the status bar at the top of the screen -->
<preference name="ios-statusbarstyle" value="black-opaque" /> <!-- ios: black-translucent will appear black because the PhoneGap webview doesn't go beneath the status bar -->
<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="false" /> <!-- ios: if true open within app -->
<preference name="exit-on-suspend" value="false" /> <!-- ios: terminate if home is pressed -->
<preference name="show-splash-screen-spinner" value="true" /> <!-- ios: splash spinner visibility -->
<preference name="auto-hide-splash-screen" value="true" /> <!-- ios: if set to false, the splash screen must be hidden using a JavaScript API -->
<!-- IOS INLINE PLAYBACK -->
<preference name="AllowInlineMediaPlayback" value="true" />
<!-- KEYBOARD FIX ANYARE!? -->
<preference name="android-windowSoftInputMode" value="adjustResize" />
<!-- ICONS -->
<icon src="icon.png" gap:role="default" />
<!-- ANDOROID -->
<icon src="res/icon.png" gap:platform="android" />
<!-- IOS REQUIRED ICONS -->
<icon src="icon-57.png" gap:platform="ios" width="57" height="57" />
<icon src="icon-72.png" gap:platform="ios" width="72" height="72" />
<icon src="icon-76.png" gap:platform="ios" width="76" height="76" />
<icon src="icon-120.png" gap:platform="ios" width="120" height="120" />
<icon src="icon-152.png" gap:platform="ios" width="152" height="152" />
<!-- SPLASH OK!!! -->
<gap:splash src="res/screen/default.png" />
<gap:splash src="res/screen/default.png" gap:platform="ios" width="640" height="1136" />
<preference name="SplashMaintainAspectRatio" value="true" />
<!-- PLUGINS -->
<plugin name="cordova-plugin-inappbrowser" spec="1.3.0" />
<plugin name="cordova-plugin-splashscreen" spec="3.2.1" />
<plugin name="cordova-plugin-x-socialsharing" spec="5.0.11" />
<!-- ALLOW IFRAMES -->
<plugin name="cordova-plugin-whitelist" spec="1.2.1" />
<allow-navigation href="*" />
<!-- ONESIGNAL -->
<plugin name="onesignal-cordova-plugin-pgb-compat" spec="1.11.2" />
<plugin name="cordova-plugin-googleplayservices" spec="19.0.3" />
<plugin name="cordova-plugin-android-support-v4" spec="21.0.1" />
</widget>