-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.xml
More file actions
71 lines (71 loc) · 3.55 KB
/
config.xml
File metadata and controls
71 lines (71 loc) · 3.55 KB
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<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>Onsen UI v2 React Minimum</name>
<description/>
<author/>
<content src="index.html"/>
<preference name="loglevel" value="DEBUG"/>
<preference name="AndroidLaunchMode" value="singleTop"/>
<preference name="BackgroundColor" value="0xffffffff"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="ErrorUrl" value=""/>
<preference name="Fullscreen" value="false"/>
<preference name="KeepRunning" value="true"/>
<preference name="monaca:WebViewEngine" value="default"/>
<preference name="SplashScreen" value="screen"/>
<preference name="SplashScreenDelay" value="1000"/>
<preference name="Orientation" value="default"/>
<preference name="monaca:DisableCookie" value="false"/>
<preference name="monaca:AndroidIsPackageNameSeparate" value="false"/>
<preference name="AllowInlineMediaPlayback" value="false"/>
<preference name="AutoHideSplashScreen" value="true"/>
<preference name="BackupWebStorage" value="cloud"/>
<preference name="FadeSplashScreen" value="true"/>
<preference name="FadeSplashScreenDuration" value="250"/>
<preference name="KeyboardDisplayRequiresUserAction" value="true"/>
<preference name="MediaTypesRequiringUserActionForPlayback" value="none"/>
<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"/>
<preference name="target-device" value="universal"/>
<feature name="App">
<param name="android-package" value="org.apache.cordova.App"/>
</feature>
<feature name="LocalStorage">
<param name="ios-package" value="CDVLocalStorage"/>
</feature>
<platform name="ios">
<preference name="orientation" value="all"/>
<splash src="/res/ios/screen/Default@2x~universal~anyany.png"/>
<icon src="/res/ios/icon/icon-1024.png"/>
<splash src="/res/ios/screen/Default@2x~universal~anyany.png"/>
<config-file platform="ios" parent="CFBundleLocalizations" target="*-Info.plist">
<array>
<string>en</string>
</array>
</config-file>
<preference name="scheme" value="monaca-app"/>
<preference name="hostname" value="localhost"/>
</platform>
<platform name="android">
<icon src="/res/android/icon/ldpi.png" density="ldpi"/>
<icon src="/res/android/icon/mdpi.png" density="mdpi"/>
<icon src="/res/android/icon/hdpi.png" density="hdpi"/>
<icon src="/res/android/icon/xhdpi.png" density="xhdpi"/>
<icon src="/res/android/icon/xxhdpi.png" density="xxhdpi"/>
<icon src="/res/android/icon/xxxhdpi.png" density="xxxhdpi"/>
<preference name="AndroidWindowSplashScreenBackground" value="#ffffff"/>
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/android/screen/window_splashscreen_icon.png"/>
</platform>
<platform name="electron">
<icon src="/res/electron/icon/icon_electron_512.png" width="512" height="512"/>
<splash src="/res/electron/screen/electron_splash_image.png" width="620" height="300"/>
<preference name="SplashScreenWidth" value="620"/>
<preference name="SplashScreenHeight" value="300"/>
<preference name="ShowSplashScreen" value="false"/>
</platform>
</widget>