-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.xml
41 lines (36 loc) · 1.49 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld"
version="4.1.1"
xmlns="http://www.w3.org/ns/widgets"
xmlns:gap="http://phonegap.com/ns/1.0">
<name>klimat</name>
<description>
the application that show prices.
</description>
<author email="[email protected]" href="http://2donow.ru">
Evgeniy Gribkov
</author>
<content src="index.html" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="22" />
<icon src="www/res/logo_klimat.png" />
<plugin name="cordova-plugin-whitelist" spec="~1.2.1" />
<plugin name="cordova-plugin-device" source="npm" spec="~1.1.6" />
<plugin name="cordova-plugin-dialogs" source="npm" spec="~1.3.3" />
<plugin name="cordova-plugin-file" source="npm" spec="~4.3.3" />
<plugin name="cordova-plugin-inappbrowser" source="npm" spec="~1.7.1" />
<allow-navigation href="*" />
<access origin="*" />
<allow-intent href="*" />
<platform name="android">
<allow-intent href="market:*" />
<allow-intent href="*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<engine name="android" spec="~6.3.0" />
<preference name="AndroidPersistentFileLocation" value="Compatibility" />
<preference name="AndroidExtraFilesystems" value="files, cache, sdcard, cache-external, files-external" />
</widget>