Skip to content

Commit 9d07cad

Browse files
committed
Improved Bridge with WhatsApp
Signed-off-by: Dev4Mod <[email protected]>
1 parent 3d269bc commit 9d07cad

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,24 @@
8686
android:name=".activities.ForceStartActivity"
8787
android:excludeFromRecents="true"
8888
android:exported="true"
89-
android:theme="@android:style/Theme.NoDisplay" />
89+
android:theme="@android:style/Theme.NoDisplay">
90+
91+
<intent-filter>
92+
<action android:name="android.intent.action.SEND" />
93+
<category android:name="android.intent.category.DEFAULT" />
94+
<data android:mimeType="*/*" />
95+
</intent-filter>
96+
97+
<intent-filter>
98+
<action android:name="android.intent.action.VIEW" />
99+
100+
<category android:name="android.intent.category.DEFAULT" />
101+
<category android:name="android.intent.category.BROWSABLE" />
102+
103+
<data android:scheme="https" />
104+
</intent-filter>
105+
</activity>
106+
90107

91108
<service
92109
android:name=".xposed.bridge.service.BridgeService"
@@ -100,6 +117,7 @@
100117
android:exported="true"
101118
tools:ignore="ExportedContentProvider" />
102119

120+
103121
<meta-data
104122
android:name="xposedmodule"
105123
android:value="true" />

0 commit comments

Comments
 (0)