Tools - Share Apk File

Anmol dwivedi
0

String apk = "";
String uri = ("com.my.project");

try {
android.content.pm.PackageInfo pi = getPackageManager().getPackageInfo(uri, android.content.pm.PackageManager.GET_ACTIVITIES);

apk = pi.applicationInfo.publicSourceDir;
} catch (Exception e) {
showMessage(e.toString());
}
Intent iten = new Intent(Intent.ACTION_SEND);
iten.setType("*/*");
iten.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new java.io.File(apk)));

startActivity(Intent.createChooser(iten, "Send APK"));

Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.
Post a Comment (0)
Our website uses cookies to enhance your experience. Learn More
Accept !