-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
48 lines (47 loc) · 2.67 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
<?xml version="1.0" encoding='utf-8'?>
<widget xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0" id="io.gothere.app" version="1.0.0">
<name>test</name>
<description>Never get bored!!! Find all kind of events here</description>
<author href="http://www.gothere.io" email="[email protected]">Gothere Team</author>
<content src="index.html"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="android-minSdkVersion" value="14"/>
<preference name="SplashScreen" value="screen" />
<preference name="SplashScreenDelay" value="5000" />
<gap:plugin name="cordova-plugin-whitelist" source="npm" />
<plugin name="cordova-plugin-splashscreen" source="npm"/>
<icon src="icon.png"/>
<platform name="android">
<icon src="res/icon/android/gothere-appicon-hdpi.png" density="ldpi"/>
<icon src="res/icon/android/gothere-appicon-mdpi.png" density="mdpi"/>
<icon src="res/icon/android/gothere-appicon-hdpi.png" density="hdpi"/>
<icon src="res/icon/android/gothere-appicon-xhdpi.png" density="xhdpi"/>
<icon src="res/icon/android/gothere-appicon-xxhdpi.png" density="xxhdpi"/>
<icon src="res/icon/android/gothere-appicon-xxxhdpi.png" density="xxxhdpi"/>
<splash src="res/screen/android/drawable-land-ldpi-screen.png" density="land-ldpi"/>
<splash src="res/screen/android/drawable-land-mdpi-screen.png" density="land-mdpi"/>
<splash src="res/screen/android/drawable-land-hdpi-screen.png" density="land-hdpi"/>
<splash src="res/screen/android/drawable-land-xhdpi-screen.png" density="land-xhdpi"/>
<splash src="res/screen/android/drawable-land-xxhdpi-screen.png" density="land-xxhdpi"/>
<splash src="res/screen/android/drawable-land-xxxhdpi-screen.png" density="land-xxxhdpi"/>
<splash src="res/screen/android/drawable-port-ldpi-screen.png" density="port-ldpi"/>
<splash src="gothere-background-mdpi.png" density="port-mdpi"/>
<splash src="gothere-background-hdpi.png" density="port-hdpi"/>
<splash src="gothere-background-xhdpi.png" density="port-xhdpi"/>
<splash src="gothere-background-xxhdpi.png" density="port-xxhdpi"/>
<splash src="gothere-background-xxxhdpi.png" density="port-xxxhdpi"/>
</platform>
<access origin="http://gothere.000webhostapp.com" subdomain="true"/>
<!--<uses-permission android:name="android.permission.INTERNET" />-->
<allow-navigation href="*" />
<allow-intent href="*" />
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<allow-intent href="tel:*"/>
<allow-intent href="sms:*"/>
<allow-intent href="mailto:*"/>
<allow-intent href="geo:*"/>
<platform name="android">
<allow-intent href="market:*"/>
</platform>
</widget>