diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2015-02-14 13:07:06 +0100 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2015-02-14 13:07:06 +0100 |
| commit | ffb66061848fdf78b1cae3452e24f74228ac5d6a (patch) | |
| tree | 8a574831c7ddbacbbb1d5656b8a2b7722b0b2c8d | |
| parent | dad670fb0ac277deb536c3b6d256036ff564f61d (diff) | |
| download | cgeo-ffb66061848fdf78b1cae3452e24f74228ac5d6a.zip cgeo-ffb66061848fdf78b1cae3452e24f74228ac5d6a.tar.gz cgeo-ffb66061848fdf78b1cae3452e24f74228ac5d6a.tar.bz2 | |
fix #4670: register for opencaching.RO urls
| -rw-r--r-- | main/AndroidManifest.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/main/AndroidManifest.xml b/main/AndroidManifest.xml index cdf739b..e026b5c 100644 --- a/main/AndroidManifest.xml +++ b/main/AndroidManifest.xml @@ -698,6 +698,44 @@ android:pathPrefix="/viewcache.php" android:scheme="http" /> </intent-filter> + + <!-- opencaching.RO --> + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + <action android:name="android.nfc.action.NDEF_DISCOVERED" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + + <data + android:host="opencaching.ro" + android:pathPrefix="/OR" + android:scheme="http" /> + </intent-filter> + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + <action android:name="android.nfc.action.NDEF_DISCOVERED" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + + <data + android:host="www.opencaching.ro" + android:pathPrefix="/OR" + android:scheme="http" /> + </intent-filter> + <intent-filter> + <action android:name="android.intent.action.VIEW" /> + <action android:name="android.nfc.action.NDEF_DISCOVERED" /> + + <category android:name="android.intent.category.DEFAULT" /> + <category android:name="android.intent.category.BROWSABLE" /> + + <data + android:host="www.opencaching.ro" + android:pathPrefix="/viewcache.php" + android:scheme="http" /> + </intent-filter> <!-- opencaching.US --> <intent-filter> |
