-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
59 lines (57 loc) · 2.7 KB
/
AndroidManifest.xml
File metadata and controls
59 lines (57 loc) · 2.7 KB
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"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.neoturbine.autolycus" android:versionCode="5"
android:versionName="1.7">
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher_black">
<provider android:name=".providers.AutolycusProvider"
android:syncable="false" android:authorities="net.neoturbine.providers.autolycus" />
<activity android:name="BusShortcuts" android:configChanges="orientation|keyboardHidden"
android:label="@string/shortcut">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="SelectRoute" android:label="@string/route_title">
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.autolycus.routes" />
</intent-filter>
</activity>
<activity android:name="SelectDirection" android:label="@string/dir_title">
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.autolycus.directions" />
</intent-filter>
</activity>
<activity android:name="SelectStop" android:label="@string/stop_title">
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.dir/vnd.autolycus.stops" />
</intent-filter>
</activity>
<activity android:name="StopPrediction"
android:configChanges="orientation|keyboardHidden" android:label="@string/prediction_title"
android:launchMode="singleInstance">
<intent-filter>
<action android:name="net.neoturbine.autolycus.openstop" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:label="@string/prefs_title" android:name=".prefs.Prefs"></activity>
<activity android:name="AboutScreen" android:label="@string/app_name"
android:icon="@drawable/ic_launcher_black">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-feature android:name="android.hardware.touchscreen" />
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
</manifest>