This repository has been archived by the owner on Nov 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
65 lines (54 loc) · 3.73 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- config.xml reference: https://build.phonegap.com/docs/config-xml -->
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="com.cocktailnapkinstudios.CNSLiveStream" version="1.2.39">
<name>Cocktail Napkin Studios Live</name>
<description>
Tune in to live streaming audio sessions of "The Shakes", a podcast hosted by Mule Radio Syndicate and produced by Cocktail Napkin Studios.
Receive push notifications when new episodes are being recorded and find out how you can participate in that episode's discussion. Or, simply open the app any time to listen to streaming archives of the show. It's like having the world of creativity in your pocket!
</description>
<author href="http://cocktailnapkinstudios.com" email="[email protected]">
Cocktail Napkin Studios
</author>
<gap:platform name="ios"/>
<gap:platform name="android"/>
<feature name="http://api.phonegap.com/1.0/device"/>
<preference name="phonegap-version" value="2.9.0"/>
<preference name="orientation" value="portrait"/>
<preference name="target-device" value="handset"/>
<preference name="fullscreen" value="true"/>
<preference name="webviewbounce" value="false"/>
<preference name="prerendered-icon" value="true"/>
<preference name="stay-in-webview" value="false"/>
<preference name="ios-statusbarstyle" value="black-opaque"/>
<preference name="detect-data-types" value="true"/>
<preference name="exit-on-suspend" value="false"/>
<preference name="show-splash-screen-spinner" value="false"/>
<preference name="auto-hide-splash-screen" value="true"/>
<preference name="android-minSdkVersion" value="7"/>
<preference name="android-installLocation" value="auto"/>
<preference name="DisallowOverscroll" value="true"/>
<!-- Plugins can also be added here. -->
<gap:plugin name="com.pushwoosh.plugins.pushwoosh" version="3.0.1"/>
<gap:plugin name="com.adobe.plugins.gaplugin" version="2.1.5"/>
<!-- Define app icon for each platform. -->
<icon src="icon.png"/>
<icon src="res/icon/android/icon-36-ldpi.png" gap:platform="android" gap:density="ldpi"/>
<icon src="res/icon/android/icon-48-mdpi.png" gap:platform="android" gap:density="mdpi"/>
<icon src="res/icon/android/icon-72-hdpi.png" gap:platform="android" gap:density="hdpi"/>
<icon src="res/icon/android/icon-96-xhdpi.png" gap:platform="android" gap:density="xhdpi"/>
<icon src="res/icon/ios/icon-57.png" gap:platform="ios" width="57" height="57"/>
<icon src="res/icon/ios/icon-72.png" gap:platform="ios" width="72" height="72"/>
<icon src="res/icon/ios/icon-57-2x.png" gap:platform="ios" width="114" height="114"/>
<icon src="res/icon/ios/icon-72-2x.png" gap:platform="ios" width="144" height="144"/>
<!-- Define app splash screen for each platform. -->
<gap:splash src="res/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi"/>
<gap:splash src="res/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi"/>
<gap:splash src="res/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi"/>
<gap:splash src="res/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi"/>
<gap:splash src="res/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480"/>
<gap:splash src="res/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960"/>
<gap:splash src="res/screen/ios/screen-iphone5-portrait.png" gap:platform="ios" width="640" height="1136"/>
<!-- Define access to external domains. -->
<access origin="*"/>
<access origin="https://*.pushwoosh.com"/>
</widget>