-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.xml
57 lines (50 loc) · 2.76 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
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.lwtv.gvins_recorder" version="1.0.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>GVINS-Recorder</name>
<description>
A recording app for GPS, Visual and Inertial (GVINS) measurements with a common timestamp.
</description>
<author email="Redaktion@LwTV.de" href="http://lwtv.de">
Langwasser TV Redaktion
</author>
<content src="index.html" />
<access origin="*" />
<preference name="android-targetSdkVersion" value="31" />
<preference name="android-minSdkVersion" value="21" />
<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">
<allow-intent href="market:*" />
<preference name="AndroidPersistentFileLocation" value="Internal" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
<preference name="iosPersistentFileLocation" value="Library" />
</platform>
<!-- IOS camera access, for cordova camera plugin -->
<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
<string>As this app records camera images it needs access to it.</string>
</edit-config>
<edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
<string>Access to the photo library is necessary in order to select images stored on the phone</string>
</edit-config>
<edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
<string>Access to the photo library is necessary in order to select images stored on the phone</string>
</edit-config>
<!-- Enable Geolocation for iOS , set the value to true , it seems there is a problem , with geolocation enabled in this plugin . -->
<edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>This app needs access to location in order to measure and store GPS measurements.</string>
</edit-config>
<edit-config target="NSLocationAlwaysAndWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
<string>This app needs access to location in order to measure and store GPS measurements.</string>
</edit-config>
<edit-config target="NSLocationAlwaysUsageDescription" file="*-Info.plist" mode="merge">
<string>This app needs access to location in order to measure and store GPS measurements.</string>
</edit-config>
<preference name="CameraUsesGeolocation" value="false" />
</widget>