-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconfig.xml
54 lines (41 loc) · 2.51 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
<?xml version="1.0" encoding="UTF-8"?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.fruiz500.passlok"
versionCode = "53"
version = "2.4.20">
<name>PassLok</name>
<description>
High strength accessible cryptography.
</description>
<author href="https://passlok.com" email="[email protected]">
Francisco Ruiz
</author>
<preference name='phonegap-version' value='cli-9.0.0' />
<!--Don't ask for any permissions other than file access-->
<preference name="permissions" value="none"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<plugin name="cordova-plugin-statusbar" source="npm" />
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="stay-in-webview" value="true" />
<access origin="*" />
<gap:config-file platform="ios" parent="UIStatusBarHidden">
<true/>
</gap:config-file>
<gap:config-file platform="ios" parent="UIViewControllerBasedStatusBarAppearance">
<false/>
</gap:config-file>
<icon src="icon.png" />
<!-- Define app splash screen for each platform. -->
<gap:splash src="phonegap/screen/android/screen-ldpi-portrait.png" gap:platform="android" gap:density="ldpi" />
<gap:splash src="phonegap/screen/android/screen-mdpi-portrait.png" gap:platform="android" gap:density="mdpi" />
<gap:splash src="phonegap/screen/android/screen-hdpi-portrait.png" gap:platform="android" gap:density="hdpi" />
<gap:splash src="phonegap/screen/android/screen-xhdpi-portrait.png" gap:platform="android" gap:density="xhdpi" />
<gap:splash src="phonegap/screen/ios/screen-iphone-portrait.png" gap:platform="ios" width="320" height="480" />
<gap:splash src="phonegap/screen/ios/screen-iphone-portrait-2x.png" gap:platform="ios" width="640" height="960" />
<gap:splash src="phonegap/screen/ios/screen-iphone-portrait-568h-2x.png" gap:platform="ios" width="640" height="1136" />
<gap:splash src="phonegap/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024" />
<gap:splash src="phonegap/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768" />
<gap:splash src="phonegap/screen/ios/screen-ipad-portrait-2x.png" gap:platform="ios" width="1536" height="2048" />
<gap:splash src="phonegap/screen/ios/screen-ipad-landscape-2x.png" gap:platform="ios" width="2048" height="1536" />
</widget>