This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.xml
59 lines (59 loc) · 4.95 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
55
56
57
58
59
<?xml version='1.0' encoding='utf-8'?>
<widget android-versionCode="9" id="org.scratchclient4.sc4mobile" version="0.4.2" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Itchy</name>
<description>
A Scratch client for Android mobile devices.
</description>
<author email="hi@micahlindley.com" href="http://sc4.micahlindley.com">
The Scratch Client 4 Contributors
</author>
<content src="index.html" />
<preference name="target-device" value="handset" />
<preference name="DisallowOverscroll" value="true" />
<preference name="android-minSdkVersion" value="22" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<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:*" />
<preference name="AutoHideSplashScreen" value="false" />
<preference name="FadeSplashScreen" value="true" />
<platform name="android">
<icon background="resources/android/icon/ldpi-background.png" density="ldpi" foreground="resources/android/icon/ldpi-foreground.png" src="resources/android/icon/drawable-ldpi-icon.png" />
<icon background="resources/android/icon/mdpi-background.png" density="mdpi" foreground="resources/android/icon/mdpi-foreground.png" src="resources/android/icon/drawable-mdpi-icon.png" />
<icon background="resources/android/icon/hdpi-background.png" density="hdpi" foreground="resources/android/icon/hdpi-foreground.png" src="resources/android/icon/drawable-hdpi-icon.png" />
<icon background="resources/android/icon/xhdpi-background.png" density="xhdpi" foreground="resources/android/icon/xhdpi-foreground.png" src="resources/android/icon/drawable-xhdpi-icon.png" />
<icon background="resources/android/icon/xxhdpi-background.png" density="xxhdpi" foreground="resources/android/icon/xxhdpi-foreground.png" src="resources/android/icon/drawable-xxhdpi-icon.png" />
<icon background="resources/android/icon/xxxhdpi-background.png" density="xxxhdpi" foreground="resources/android/icon/xxxhdpi-foreground.png" src="resources/android/icon/drawable-xxxhdpi-icon.png" />
<allow-intent href="market:*" />
<splash density="land-ldpi" src="resources/android/splash/drawable-land-ldpi-screen.png" />
<splash density="land-mdpi" src="resources/android/splash/drawable-land-mdpi-screen.png" />
<splash density="land-hdpi" src="resources/android/splash/drawable-land-hdpi-screen.png" />
<splash density="land-xhdpi" src="resources/android/splash/drawable-land-xhdpi-screen.png" />
<splash density="land-xxhdpi" src="resources/android/splash/drawable-land-xxhdpi-screen.png" />
<splash density="land-xxxhdpi" src="resources/android/splash/drawable-land-xxxhdpi-screen.png" />
<splash density="port-ldpi" src="resources/android/splash/drawable-port-ldpi-screen.png" />
<splash density="port-mdpi" src="resources/android/splash/drawable-port-mdpi-screen.png" />
<splash density="port-hdpi" src="resources/android/splash/drawable-port-hdpi-screen.png" />
<splash density="port-xhdpi" src="resources/android/splash/drawable-port-xhdpi-screen.png" />
<splash density="port-xxhdpi" src="resources/android/splash/drawable-port-xxhdpi-screen.png" />
<splash density="port-xxxhdpi" src="resources/android/splash/drawable-port-xxxhdpi-screen.png" />
<!-- Dark mode splashes -->
<splash density="land-night-ldpi" src="resources/android/splash/night/drawable-land-ldpi-screen.png" />
<splash density="land-night-mdpi" src="resources/android/splash/night/drawable-land-mdpi-screen.png" />
<splash density="land-night-hdpi" src="resources/android/splash/night/drawable-land-hdpi-screen.png" />
<splash density="land-night-xhdpi" src="resources/android/splash/night/drawable-land-xhdpi-screen.png" />
<splash density="land-night-xxhdpi" src="resources/android/splash/night/drawable-land-xxhdpi-screen.png" />
<splash density="land-night-xxxhdpi" src="resources/android/splash/night/drawable-land-xxxhdpi-screen.png" />
<splash density="port-night-ldpi" src="resources/android/splash/night/drawable-port-ldpi-screen.png" />
<splash density="port-night-mdpi" src="resources/android/splash/night/drawable-port-mdpi-screen.png" />
<splash density="port-night-hdpi" src="resources/android/splash/night/drawable-port-hdpi-screen.png" />
<splash density="port-night-xhdpi" src="resources/android/splash/night/drawable-port-xhdpi-screen.png" />
<splash density="port-night-xxhdpi" src="resources/android/splash/night/drawable-port-xxhdpi-screen.png" />
<splash density="port-night-xxxhdpi" src="resources/android/splash/night/drawable-port-xxxhdpi-screen.png" />
<preference name="ShowSplashScreenSpinner" value="false" />
</platform>
</widget>