This repository has been archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
93 lines (86 loc) · 4.5 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
<?xml version="1.0" encoding="UTF-8"?>
<widget
xmlns="http://www.w3.org/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.example.helloworld"
version="1.0.0"
>
<name>Google News PWA</name>
<description/>
<author/>
<content src="index.html"/>
<access origin="*"/>
<allow-navigation href="*"/>
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="Orientation" value="default"/>
<preference name="loglevel" value="DEBUG"/>
<preference name="AndroidLaunchMode" value="singleTop"/>
<preference name="ErrorUrl" value=""/>
<preference name="Fullscreen" value="true"/>
<preference name="KeepRunning" value="true"/>
<preference name="SplashScreen" value="screen"/>
<preference name="SplashScreenDelay" value="2500"/>
<preference name="AllowInlineMediaPlayback" value="true"/>
<preference name="AutoHideSplashScreen" value="true"/>
<preference name="BackupWebStorage" value="cloud"/>
<preference name="EnableViewportScale" value="false"/>
<preference name="FadeSplashScreen" value="true"/>
<preference name="FadeSplashScreenDuration" value="550"/>
<preference name="KeyboardDisplayRequiresUserAction" value="true"/>
<preference name="MediaPlaybackRequiresUserAction" value="false"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="SuppressesIncrementalRendering" value="false"/>
<preference name="TopActivityIndicator" value="gray"/>
<preference name="GapBetweenPages" value="0"/>
<preference name="PageLength" value="0"/>
<preference name="PaginationBreakingMode" value="page"/>
<preference name="PaginationMode" value="unpaginated"/>
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage"/>
</feature>
<preference name="UIWebViewDecelerationSpeed" value="normal"/>
<preference name="monaca:AndroidIsPackageNameSeparate" value="false"/>
<preference name="ios-XCBuildConfiguration-TARGETED_DEVICE_FAMILY" value="1,2"/>
<platform name="ios">
<icon src="images/ios/icon.png" width="57" height="57"/>
<icon src="images/ios/[email protected]" width="114" height="114"/>
<icon src="images/ios/icon-72.png" width="72" height="72"/>
<icon src="images/ios/[email protected]" width="144" height="144"/>
<icon src="images/ios/icon-60.png" width="60" height="60"/>
<icon src="images/ios/[email protected]" width="120" height="120"/>
<icon src="images/ios/[email protected]" width="180" height="180"/>
<icon src="images/ios/icon-76.png" width="76" height="76"/>
<icon src="images/ios/[email protected]" width="152" height="152"/>
<icon src="images/ios/icon-40.png" width="40" height="40"/>
<icon src="images/ios/[email protected]" width="80" height="80"/>
<icon src="images/ios/icon-50.png" width="50" height="50"/>
<icon src="images/ios/[email protected]" width="100" height="100"/>
<icon src="images/ios/icon-small.png" width="29" height="29"/>
<icon src="images/ios/[email protected]" width="58" height="58"/>
<icon src="images/ios/[email protected]" width="87" height="87"/>
<icon src="images/ios/icon-83.5@2x~ipad.png" width="167" height="167"/>
<icon src="images/ios/icon-1024.png" width="1024" height="1024"/>
<splash src="images/screen/ios/launch-640x1136.png" width="640" height="1136"/>
<splash src="images/screen/ios/launch-750x1294.png" width="750" height="1294"/>
<splash src="images/screen/ios/launch-1125x2436.png" width="1125" height="2436"/>
<splash src="images/screen/ios/launch-1242x2148.png" width="1242" height="2148"/>
<splash src="images/screen/ios/launch-1536x2048.png" width="1536" height="2048"/>
<splash src="images/screen/ios/launch-1668x2224.png" width="1668" height="2224"/>
<splash src="images/screen/ios/launch-2048x2732.png" width="2048" height="2732"/>
<config-file platform="ios" parent="CFBundleLocalizations" target="*-Info.plist">
<array>
<string>en</string>
</array>
</config-file>
</platform>
<platform name="android">
<icon src="images/icons/android/android-icon-32x32.png" density="hdpi"/>
<icon src="images/icons/android/android-icon-48x48.png" density="ldpi"/>
<icon src="images/icons/android/android-icon-72x72.png" density="mdpi"/>
<icon src="images/icons/android/android-icon-96x96.png" density="xhdpi"/>
<icon src="images/icons/android/android-icon-144x144.png" density="xxhdpi"/>
<icon src="images/icons/android/android-icon-192x192.png" density="xxxhdpi"/>
</platform>
</widget>