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

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -