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