-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
122 lines (85 loc) · 4.4 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
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
120
121
122
<?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 = "com.spinninghamster.app"
package = "com.spinninghamster.app"
version = "1.0.0"
android-versionCode=""
android-versionName="1.0.0">
<name>Spinning Hamster App</name>
<description>Spinning Hamster App</description>
<author email="" href="">
</author>
<content src="index.html" />
<preference name="orientation" value="portrait" />
<preference name="android-build-tool" value="gradle" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashScreenBackgroundColor" value="white" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<preference name="AndroidLaunchMode" value="singleTask" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<gap:plugin name="cordova-plugin-whitelist" source="npm" />
<gap:plugin name="cordova-plugin-statusbar" source="npm" />
<gap:plugin name="cordova-plugin-device" source="npm" />
<gap:plugin name="cordova-plugin-inappbrowser" source="npm" />
<gap:plugin name="cordova-plugin-splashscreen" source="npm" />
<gap:plugin name="cordova-plugin-geolocation" source="npm"/>
<gap:plugin name="cordova-plugin-network-information" source="npm" />
<gap:plugin name="cordova-open-native-settings" source="npm" />
<gap:plugin name="cordova-plugin-dialogs" source="npm" />
<gap:plugin name="cordova-plugin-request-location-accuracy" source="npm" spec="2.2.2" />
<gap:plugin name="cordova-plugin-x-toast" source="npm"/>
<gap:plugin spec="https://github.com/danwilson/google-analytics-plugin.git" source="git" />
<gap:plugin name="cordova-plugin-googlemaps" source="npm" spec="2.2.8">
<variable name="API_KEY_FOR_ANDROID" value="" />
<variable name="API_KEY_FOR_IOS" value="" />
<variable name="LOCATION_WHEN_IN_USE_DESCRIPTION" value="Reason" />
<variable name="LOCATION_ALWAYS_USAGE_DESCRIPTION" value="Reason" />
</gap:plugin>
<gap:plugin name="cordova-plugin-buildinfo" source="npm" spec="1.1.0" />
<gap:plugin name="onesignal-cordova-plugin" source="npm" spec="2.4.0"/>
<gap:plugin name="cordova-plugin-customurlscheme" source="npm">
<param name="URL_SCHEME" value="ubonhero" />
</gap:plugin>
<platform name="android" />
<platform name="ios" />
<feature name="Geolocation">
<param name="ios-package" value="CDVLocation"/>
</feature>
<preference name="phonegap-version" value="cli-7.1.0" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="SplashScreenDelay" value="1000" />
<preference name="fullscreen" value="false" />
<preference name="android-minSdkVersion" value="19" />
<preference name="android-targetSdkVersion" value="23" />
<preference name="ShowSplashScreenSpinner" value="false" />
<access origin="*" />
<access origin="tel:*" launch-external="yes" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="line:*" />
<gap:config-file platform="android" parent="/manifest">
<supports-screens android:xlargeScreens="true" android:largeScreens="true" android:smallScreens="true" />
<application android:theme="@android:style/Theme.NoTitleBar" >
</application>
</gap:config-file>
<platform name="android">
<edit-config file="AndroidManifest.xml" target="/manifest/supports-screens" mode="merge">
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
</edit-config>
<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application/activity[@android:name='MainActivity']">
<activity android:name="MainActivity" android:windowSoftInputMode="adjustPan" android:launchMode="singleTask"/>
</edit-config>
</platform>
<platform name="ios">
</platform>
</widget>