Try this :
Intent intent = new Intent(Intent.ActionMain); intent.SetComponent(new ComponentName("com.package.address","com.package.address.MainActivity")); StartActivity(intent);
You can also make you use of something like this :
Intent intent = PackageManager.GetLaunchIntentForPackage("com.package.address"); StartActivity(intent);
This will surely help you
Answers
Try this :
You can also make you use of something like this :
This will surely help you
Do you have an example with an actual app?
I want to open flipkart from my app with button click what i do?
Intent intent = PackageManager.GetLaunchIntentForPackage("com.flipkart.android");
StartActivity(intent);
@YkshLeo Do you have any idea to launching the external application's particular page in both android and iOS?