Wednesday, July 8, 2015

android:One application will be called from another application

If you want to call one .apk from your application. If .apk file is installed in your device then use that .apk file's Package name to Launch that apk . use this
  Intent launchIntent = getPackageManager().getLaunchIntentForPackage(PackageName);
            startActivity(launchIntent);

No comments:

Post a Comment