-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
61 lines (50 loc) · 2.13 KB
/
AndroidManifest.xml
File metadata and controls
61 lines (50 loc) · 2.13 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
60
61
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.ligi.fast"
android:versionCode="37"
android:versionName="3.7">
<uses-sdk
android:minSdkVersion="5"
android:targetSdkVersion="17"/>
<!--
from experiments with shortcut - but dropped this feature for the feature of no needed permission
just add this permission and you will have the function - there is code checking for the existence of
this permission and adding the function if it is there
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
-->
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"/>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".ApplicationContext"
android:theme="@style/transparent_dark">
<activity
android:name=".FASTPrefsActivity"/>
<activity
android:name=".SearchActivity"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:stateNotNeeded="true"
>
<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.ASSIST"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
</application>
</manifest>