This repository has been archived by the owner on Jun 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
45 lines (45 loc) · 2.25 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
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="1" id="io.cordova.hellocordova" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:gap="http://phonegap.com/ns/1.0">
<name>Boilerplate</name>
<description>
Boilerplate
</description>
<author email="farskid@gmail.com" href="http://farzadyz.com ">
Farzad YZ
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<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:*" />
<preference name="orientation" value="portrait" />
<preference name="android-minSdkVersion" value="16" />
<preference name="loadUrlTimeoutValue" value="700000" />
<preference name="AutoHideSplashScreen" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashShowOnlyFirstTime" value="true" />
<preference name="FadeSplashScreen" value="false" />
<preference name="android-minSdkVersion" value="19" />
<preference name="AndroidLaunchMode" value="singleTask" />
<splash density="port-hdpi" src="res/splash/480x720.png" />
<splash density="port-ldpi" src="res/splash/240x360.png" />
<splash density="port-mdpi" src="res/splash/320x480.png" />
<splash density="port-xhdpi" src="res/splash/640x960.png" />
<splash density="port-xxhdpi" src="res/splash/960x1440.png" />
<splash density="port-xxxhdpi" src="res/splash/1280x1920.png" />
<icon density="hdpi" src="res/icon/72.png" />
<icon density="ldpi" src="res/icon/36.png" />
<icon density="mdpi" src="res/icon/48.png" />
<icon density="xhdpi" src="res/icon/96.png" />
<icon density="xxhdpi" src="res/icon/144.png" />
<icon density="xxxhdpi" src="res/icon/192.png" />
</platform>
<plugin name="cordova-plugin-splashscreen" spec="~4.0.0" />
</widget>