-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.xml
30 lines (30 loc) · 1.67 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="re.tibillet.auxsonsdujardin" version="1.0.6" xmlns="http://www.w3.org/ns/widgets"
xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>Aux sons du jardin</name>
<description>Découvrir l'acoustique d'un jardin et s'en inspirer pour créer une oeuvre.</description>
<author email="[email protected]" href="https://tibillet.re">
Tibillet coop
</author>
<content src="index.html"/>
<allow-intent href="http://*/*"/>
<allow-intent href="https://*/*"/>
<icon src="res/android/xhdpi.png" />
<splash src="res/screen/android/Default@2x~universal~anyany.png.png" />
<platform name="android">
<preference name="android-minSdkVersion" value="28"/>
<preference name="android-targetSdkVersion" value="32"/>
<preference name="AndroidWindowSplashScreenAnimatedIcon" value="res/screen/android/Default@2x~universal~anyany.png.png" />
<preference name="AndroidWindowSplashScreenBackground" value="#282658" />
<icon src="res/android/ldpi.png" density="ldpi"/>
<icon src="res/android/mdpi.png" density="mdpi"/>
<icon src="res/android/hdpi.png" density="hdpi"/>
<icon src="res/android/xhdpi.png" density="xhdpi"/>
<icon src="res/android/xxhdpi.png" density="xxhdpi"/>
<icon src="res/android/xxxhdpi.png" density="xxxhdpi"/>
</platform>
<config-file target="AndroidManifest.xml" parent="/manifest" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.FLASHLIGHT"/>
</config-file>
</widget>