How to Invoke or call one app from another app in Android?
I want to invoke one application from another application. My Java file code: Intent intent = new Intent(Intent.ACTION_RUN); intent.setComponent(new ComponentName("Package name", "class name")); startActivity(intent); But I'm getting problem in specifying exact package path and I don't know permission for that code in Manifest. Please, help me on this. I am going to assume that you really mean that you want to launch another app, not another Activity in your app. Then there are two ways to do this. You can try using an implicit intent which according to the docs, an (Implicit) intent is "an