I am trying to implement deep linking in my Android application. I have been following this guide. I have an Android Activity that is started from and intent-filter in the Andro
Have you tried doing this,
Intent intent = new Intent(this, MyActivity.class); TaskStackBuilder stackBuilder = TaskStackBuilder.create(this); stackBuilder.addNextIntentWithParentStack(intent); stackBuilder.startActivities();
You have to build your own App stack in case of deep links.