This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.xml
62 lines (62 loc) · 3.54 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
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<widget android-packageName="ch.studerraimann.ilias.offline" android-versionCode="2023011201" id="ch.studerraimann.ilias.offline" ios-CFBundleVersion="20230112.1" version="4.3.0" xmlns="http://www.w3.org/ns/widgets" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:cdv="http://cordova.apache.org/ns/1.0" >
<name>ILIAS Pegasus</name>
<description>Download, sync and store ILIAS-files on your device</description>
<author email="[email protected]" href="https://fluxlabs.ch/">fluxlabs AG</author>
<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:*"/>
<platform name="android">
<preference name="AndroidXEnabled" value="true"/>
<preference name="GradlePluginKotlinEnabled" value="true"/>
<preference name="GradlePluginKotlinCodeStyle" value="official"/>
<preference name="GradlePluginKotlinVersion" value="1.3.50"/>
<preference name="loadUrlTimeoutValue" value="700000"/>
<preference name="android-minSdkVersion" value="29"/>
<preference name="android-targetSdkVersion" value="31"/>
<allow-intent href="market:*"/>
<custom-preference name="android-manifest/application/@android:allowBackup" value="false"/>
<edit-config file="app/src/main/AndroidManifest.xml" target="/manifest/application/activity" mode="merge">
<activity android:exported="true"/>
</edit-config>
</platform>
<platform name="ios">
<preference name="BackupWebStorage" value="none"/>
<preference name="WKSuspendInBackground" value="false"/>
<preference name="AllowsAirPlayForMediaPlayback" value="true"/>
<preference name="MediaTypesRequiringUserActionForPlayback" value="none"/>
<preference name="SuppressesLongPressGesture" value="true"/>
<preference name="Suppresses3DTouchGesture" value="true"/>
<preference name="deployment-target" value="14.0.0"/>
<allow-intent href="itms:*"/>
<allow-intent href="itms-apps:*"/>
<edit-config file="*-Info.plist" mode="merge" target="NSLocationWhenInUseUsageDescription">
<string>To locate you</string>
</edit-config>
<edit-config file="*-Info.plist" mode="merge" target="NSPhotoLibraryAddUsageDescription">
<string>This permission is required to save photos or movies to your media library.</string>
</edit-config>
</platform>
<preference name="webviewbounce" value="false"/>
<preference name="UIWebViewBounce" value="false"/>
<preference name="DisallowOverscroll" value="true"/>
<preference name="ScrollEnabled" value="false"/>
<preference name="AutoHideSplashScreen" value="false"/>
<preference name="SplashShowOnlyFirstTime" value="false"/>
<preference name="ShowSplashScreenSpinner" value="false"/>
<preference name="FadeSplashScreen" value="true"/>
<preference name="SplashMaintainAspectRatio" value="true"/>
<preference name="FadeSplashScreenDuration" value="500"/>
<preference name="CordovaWebViewEngine" value="CDVWKWebViewEngine"/>
<preference name="StatusBarOverlaysWebView" value="true"/>
<preference name="AppendUserAgent" value="ILIAS-Pegasus/4.3.0"/>
<feature name="StatusBar">
<param name="ios-package" onload="true" value="CDVStatusBar"/>
</feature>
<allow-navigation href="http://localhost:8100"/>
</widget>