Android Intent filter for url with redirect -
how setup intent filter url redirection?
this filter not work url above.
<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"/> <data android:scheme="https"/> <data android:host="foosubdomain.foodomain.com"/> </intent-filter>
this filter works url above. not needed. need filter host in redirect part foosubdomain.foodomain.com
<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"/> <data android:scheme="https"/> <data android:host="mail.mailserverxxx.com"/> </intent-filter>
well bad news. after long check found intent-filter
doesnt parse after question mark
in other words link
intent-filter
works part
so there impossible write universal solution problem.
wiki
Comments
Post a Comment