android-instant-apps-demo icon indicating copy to clipboard operation
android-instant-apps-demo copied to clipboard

Preventing "Open With" prompt when navigating in app

Open joreilly opened this issue 6 years ago • 1 comments

Is there way, when running as normal apk, to prevent the "Open with" prompt when using app links to navigate to different parts of app?

joreilly avatar Oct 07 '17 11:10 joreilly

@joreilly yeah use this:

private static void invokeDeepLink(Context context, String deepLink) {
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(deepLink));
        intent.setPackage(context.getPackageName()); // direct to activities in this app
        context.startActivity(intent);
}

sahibjaspal avatar Feb 07 '18 18:02 sahibjaspal