willowtreeapps / android-instant-apps-demo

Apache License 2.0
108 stars 9 forks source link

Preventing "Open With" prompt when navigating in app #4

Open joreilly opened 7 years ago

joreilly commented 7 years ago

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?

sahibjaspal commented 6 years ago

@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);
}