blob: 47a5185777d8a06832e28c116c4048b01b2abbe7 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.hoopajoo.android.SoftKeys"
android:versionCode="22"
android:versionName="3.08">
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application android:icon="@drawable/icon"
android:process="android.process.acore"
android:label="@string/app_name"
android:name=".Globals">
<activity android:name=".Keys"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
android:launchMode="singleTask"
android:theme="@style/Floating"
android:label="@string/app_name">
<!-- android:launchMode="singleInstance" -->
<intent-filter>
<!--
<action android:name="android.intent.action.CAMERA_BUTTON" />
<action android:name="android.intent.action.CALL_BUTTON" />
<action android:name="android.intent.action.SEARCH_LONG_PRESS" />
-->
<action android:name="android.intent.action.MAIN" />
<!-- launcher icon, keeping it around now in case you accidentally lock
yourself out of softkeys by messing with the home key behavior -->
<category android:name="android.intent.category.LAUNCHER"/>
<!-- this binds to launcher too -->
<category android:name="android.intent.category.HOME"/>
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.MONKEY" />
</intent-filter>
</activity>
<activity
android:name=".Prefs"
android:label="@string/app_name">
</activity>
<activity android:name=".QuickDoc"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.Dialog">
</activity>
<activity android:name=".ConfigureExtra"
android:label="@string/app_name"
android:configChanges="orientation|keyboardHidden"
android:theme="@android:style/Theme.Dialog">
</activity>
<activity
android:name=".SendInput"
android:label="@string/app_name">
<!--
<intent-filter>
<action android:name="net.hoopajoo.android.SoftKeys.KEY_CODE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
-->
</activity>
<receiver android:name=".BootReceiver">
<intent-filter>
<action android:name ="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
<service android:name=".SoftKeysService"/>
</application>
<uses-sdk android:minSdkVersion="4" />
</manifest>
|