Is there a way to open Chrome app on Android from default Android browser? I\'m able to open the app, but it doesn\'t redirect user to correct page. This is what I tried:
<
I opened my Safe Browser App with getting package name from Google play, the same way you can open for chrome by default also:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://Your URL"));
intent.setPackage("com.cloudacl"); // package of SafeBrowser App
startActivity(intent);
You can replace package com.cloudacl
with this com.android.chrome
to open chrome.