-
Notifications
You must be signed in to change notification settings - Fork 14
/
config.xml
45 lines (45 loc) · 3.43 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
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="435" id="at.co.kemmer.mopidy_mobile" version="1.11.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android">
<name>Mopidy Mobile</name>
<description>Simple remote client for the Mopidy music server</description>
<author email="tkemmer@computer.org">Thomas Kemmer</author>
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<preference name="AndroidXEnabled" value="true" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="DisallowOverscroll" value="true" />
<preference name="LoadUrlTimeoutValue" value="60000" />
<preference name="ShowSplashScreenSpinner" value="false" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashScreenDelay" value="3000" />
<preference name="SplashShowOnlyFirstTime" value="false" />
<feature name="StatusBar">
<param name="ios-package" onload="true" value="CDVStatusBar" />
</feature>
<icon src="res/android/icon/drawable-xhdpi-icon.png" />
<platform name="android">
<edit-config file="AndroidManifest.xml" mode="merge" target="/manifest/application">
<application android:usesCleartextTraffic="true" />
</edit-config>
<resource-file src="res/android/colors.xml" target="/app/src/main/res/values/colors.xml" />
<icon background="@color/background" density="mdpi" foreground="res/android/icon/mipmap-mdpi-icon-fg.png" src="res/android/icon/drawable-mdpi-icon.png" />
<icon background="@color/background" density="hdpi" foreground="res/android/icon/mipmap-hdpi-icon-fg.png" src="res/android/icon/drawable-hdpi-icon.png" />
<icon background="@color/background" density="xhdpi" foreground="res/android/icon/mipmap-xhdpi-icon-fg.png" src="res/android/icon/drawable-xhdpi-icon.png" />
<icon background="@color/background" density="xxhdpi" foreground="res/android/icon/mipmap-xxhdpi-icon-fg.png" src="res/android/icon/drawable-xxhdpi-icon.png" />
<icon background="@color/background" density="xxxhdpi" foreground="res/android/icon/mipmap-xxxhdpi-icon-fg.png" src="res/android/icon/drawable-xxxhdpi-icon.png" />
<splash density="land-ldpi" src="res/android/splash/drawable-land-ldpi-screen.png" />
<splash density="land-mdpi" src="res/android/splash/drawable-land-mdpi-screen.png" />
<splash density="land-hdpi" src="res/android/splash/drawable-land-hdpi-screen.png" />
<splash density="land-xhdpi" src="res/android/splash/drawable-land-xhdpi-screen.png" />
<splash density="land-xxhdpi" src="res/android/splash/drawable-land-xxhdpi-screen.png" />
<splash density="land-xxxhdpi" src="res/android/splash/drawable-land-xxxhdpi-screen.png" />
<splash density="port-ldpi" src="res/android/splash/drawable-port-ldpi-screen.png" />
<splash density="port-mdpi" src="res/android/splash/drawable-port-mdpi-screen.png" />
<splash density="port-hdpi" src="res/android/splash/drawable-port-hdpi-screen.png" />
<splash density="port-xhdpi" src="res/android/splash/drawable-port-xhdpi-screen.png" />
<splash density="port-xxhdpi" src="res/android/splash/drawable-port-xxhdpi-screen.png" />
<splash density="port-xxxhdpi" src="res/android/splash/drawable-port-xxxhdpi-screen.png" />
</platform>
</widget>