22 lines
1.2 KiB
XML
22 lines
1.2 KiB
XML
<!-- 🔗 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>
|