forked from mixare/mixare
-
Notifications
You must be signed in to change notification settings - Fork 4
/
AndroidManifest.xml
133 lines (115 loc) · 5.17 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.mixare"
android:installLocation="auto"
android:versionCode="26"
android:versionName="0.9.2"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false" >
</uses-feature>
<uses-feature
android:name="android.hardware.camera.flash"
android:required="false" >
</uses-feature>
<uses-feature
android:name="android.hardware.camera.front"
android:required="false" >
</uses-feature>
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:xlargeScreens="true" >
</supports-screens>
<application
tools:replace="android:label"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:allowBackup="true">
<activity android:name=".BootstrapActivity"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MixViewActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:screenOrientation="landscape"
android:theme="@style/MaterialDrawerTheme.TranslucentStatus" >
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="application/mixare-json"
android:scheme="http" />
<data
android:mimeType="application/mixare-json"
android:scheme="content" />
<data
android:mimeType="application/mixare-json"
android:scheme="file" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
<meta-data
android:name="android.app.default_searchable"
android:value=".MixView" />
</activity>
<activity android:name="PluginLoaderActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name="MarkerListActivity"
android:launchMode="singleTop"
android:screenOrientation="user"
android:label="@string/mix_list_view"
android:theme="@style/MaterialDrawerTheme.TranslucentStatus" >
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity android:name=".map.MapActivity"
android:theme="@style/MaterialDrawerTheme.TranslucentStatus" >
</activity>
<activity android:name=".data.AddDataSource" android:label="@string/add_datasource">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
</intent-filter>
</activity>
<activity android:name=".data.DataSourceList"
android:label="@string/datasource_list" />
<activity android:name=".PluginListActivity"
android:label="@string/plugin_list" />
<activity android:name=".settings.SettingsActivity"
android:label="@string/menu_item_settings">
</activity>
</application>
</manifest>