intentfilter - Intercepting links from browser to my android app not working on lollipop -


i have setup code in manifest intercept links links open in app. here code:

<activity     android:name="com.example.myactivity"     android:launchmode="singleinstance">     <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:host="example.com"             android:path="/dosomething"             android:scheme="https" />     </intent-filter> </activity> 

this code working fine on pre-lollipop devices , opening proper activity on lollipop devices, opening last opened activity.

do need special lollipop devices?

any appreciated.


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -