forked from GermainZ/ActivityForceNewTask
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
53 lines (46 loc) · 2 KB
/
AndroidManifest.xml
File metadata and controls
53 lines (46 loc) · 2 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.germainz.activityforcenewtask"
android:versionCode="18"
android:versionName="2.0.2">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity android:name="com.germainz.activityforcenewtask.Preferences">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS"/>
</intent-filter>
</activity>
<activity-alias
android:enabled="true"
android:name="com.germainz.activityforcenewtask.Preferences-Alias"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:targetActivity="com.germainz.activityforcenewtask.Preferences">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity-alias>
<activity android:name="com.germainz.activityforcenewtask.BlacklistActivity"/>
<receiver
android:name="com.germainz.activityforcenewtask.Logger">
<intent-filter>
<action android:name="com.germainz.activityforcenewtask.log"/>
</intent-filter>
</receiver>
<activity android:name=".LogActivity"/>
<meta-data
android:name="xposedmodule"
android:value="true"/>
<meta-data
android:name="xposedminversion"
android:value="2.0*"/>
<meta-data
android:name="xposeddescription"
android:value="Forces FLAG_ACTIVITY_NEW_TASK"/>
</application>
</manifest>