This commit is contained in:
Hamza-Ayed
2026-03-14 01:01:59 +03:00
parent e2341b104f
commit c6b27d06d4
3 changed files with 94 additions and 1 deletions

21
test_intent.xml Normal file
View File

@@ -0,0 +1,21 @@
<!-- 🔗 Intercept Geo URIs -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="geo" />
</intent-filter>
<!-- 🔗 Intercept Google Maps Links -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="maps.google.com" />
<data android:scheme="https" android:host="maps.google.com" />
<data android:scheme="https" android:host="safemap.net" />
<data android:scheme="https" android:host="maps.apple.com" />
<data android:scheme="https" android:host="goo.gl" />
<data android:scheme="http" android:host="goo.gl" />
<data android:scheme="https" android:host="maps.app.goo.gl" />
</intent-filter>