-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.xml
32 lines (32 loc) · 1.4 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.sinh.scalc" version="1.0.0" versionCode="100" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>S Calc</name>
<author email="[email protected]" href="https://sinhtruong.com">
Sinh Truong
</author>
<description>
Simple WYSIWYG Calculator
</description>
<content src="index.html" />
<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:*" />
<allow-intent href="market:*" />
<preference name="android-minSdkVersion" value="19" />
<preference name="android-targetSdkVersion" value="26" />
<preference name="android-installLocation" value="auto" />
<preference name="orientation" value="portrait" />
<preference name="StatusBarOverlaysWebView" value="false" />
<plugin name="cordova-plugin-statusbar" source="npm" />
<platform name="android">
<icon density="mdpi" src="res/mipmap-mdpi/ic_launcher.png" />
<icon density="hdpi" src="res/mipmap-hdpi/ic_launcher.png" />
<icon density="xhdpi" src="res/mipmap-xhdpi/ic_launcher.png" />
<icon density="xxhdpi" src="res/mipmap-xxhdpi/ic_launcher.png" />
<icon density="xxxhdpi" src="res/mipmap-xxxhdpi/ic_launcher.png" />
</platform>
</widget>