forked from GermainZ/CrappaLinks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
57 lines (51 loc) · 2.14 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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.germainz.crappalinks"
android:versionCode="29"
android:versionName="2.8">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:name="com.germainz.crappalinks.Preferences"
android:noHistory="true">
<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.crappalinks.Preferences-Alias"
android:label="@string/app_name"
android:icon="@drawable/ic_launcher"
android:targetActivity="com.germainz.crappalinks.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.crappalinks.Resolver"
android:theme="@android:style/Theme.NoDisplay"
android:excludeFromRecents="true"
android:exported="true"/>
<activity
android:name="com.germainz.crappalinks.ConfirmDialog"
android:theme="@android:style/Theme.Holo.Dialog"
android:excludeFromRecents="true" />
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposedminversion"
android:value="2.0*" />
<meta-data
android:name="xposeddescription"
android:value="Removes crappy link masking/tracking from various apps" />
</application>
</manifest>