forked from cyclestreets/android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
109 lines (105 loc) · 4.25 KB
/
AndroidManifest.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.cyclestreets"
android:installLocation="preferExternal">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTask"
android:allowTaskReparenting="false"
android:theme="@style/AppTheme"
android:name=".CycleStreetsApp"
android:appCategory="maps"
android:supportsRtl="false">
<activity
android:name=".CycleStreets"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Journey URLs -->
<data android:scheme="http"
android:host="cycle.st"
android:pathPrefix="/j" />
<data android:scheme="https"
android:host="cycle.st"
android:pathPrefix="/j" />
<data android:scheme="http"
android:host="cyclestreets.net"
android:pathPrefix="/journey/" />
<data android:scheme="https"
android:host="cyclestreets.net"
android:pathPrefix="/journey/" />
<data android:scheme="http"
android:host="*.cyclestreets.net"
android:pathPrefix="/journey/" />
<data android:scheme="https"
android:host="*.cyclestreets.net"
android:pathPrefix="/journey/" />
<!-- Location URLs -->
<data android:scheme="http"
android:host="cycle.st"
android:pathPrefix="/p" />
<data android:scheme="https"
android:host="cycle.st"
android:pathPrefix="/p" />
<data android:scheme="http"
android:host="cyclestreets.net"
android:pathPattern="/location/" />
<data android:scheme="https"
android:host="cyclestreets.net"
android:pathPattern="/location/" />
<data android:scheme="http"
android:host="*.cyclestreets.net"
android:pathPattern="/location/" />
<data android:scheme="https"
android:host="*.cyclestreets.net"
android:pathPattern="/location/" />
</intent-filter>
</activity>
<activity android:name="net.cyclestreets.AccountDetailsActivity"
android:label="Account Details"
android:exported="true">
<intent-filter>
<action android:name="net.cyclestreets.AccountDetailsActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="net.cyclestreets.AboutActivity"
android:label="About">
<intent-filter>
<action android:name="net.cyclestreets.AboutActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="net.cyclestreets.LocationsActivity"
android:label="Locations">
<intent-filter>
<action android:name="net.cyclestreets.LocationsActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="net.cyclestreets.views.CircularRouteActivity"
android:parentActivityName="net.cyclestreets.CycleStreets">
</activity>
<!-- Allows CycleStreets-created files to be written into by the camera app -->
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="net.cyclestreets.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<meta-data android:name="CycleStreetsAPIKey" android:value="b26a0d6b45e00612" />
</application>
</manifest>