-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.xml
22 lines (21 loc) · 1.05 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="io.atticusc.atmosweather" version="1.1.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Atmos Weather</name>
<description>A lightweight weather app for alerts and forecasts.</description>
<author email="none" href="https://cordova.apache.org">
Atticus Cornett
</author>
<content src="index.html" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<platform name="android">
<preference name="SplashMaintainAspectRatio" value="true"></preference>
<preference name="AndroidXEnabled" value="true" />
<resource-file src="res/values/colors.xml" target="/app/src/main/res/values/colors.xml" />
<icon background="@color/background" density="xxxhdpi" foreground="res/icon/android/xxxhdpi-foreground.png" />
</platform>
<platform name="electron">
<icon src="res/icon/electron/app.png" target="app" />
<icon src="res/icon/electron/installer.png" target="installer" />
</platform>
</widget>