I'm trying to make a share button which share my application through other media like Bluetooth, ShareIt, Xender.... I tried this
private void shareApplication() {
ApplicationInfo app = getApplicationContext().getApplicationInfo();
String filePath = app.sourceDir;
Intent intent = new Intent(Intent.ACTION_SEND);
// MIME of .apk is "application/vnd.android.package-archive".
// but Bluetooth does not accept this. Let's use "*/*" instead.
intent.setType("*/*");
// Append file and send Intent
intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(filePath)));
startActivity(Intent.createChooser(intent, "Share app via"));
}
I tried many other codes also, almost all of them works fine to share some text.
Now, How can I share my apk file or application via Intent on android version >= 7.0?
Thanks in advance.
question from:
https://stackoverflow.com/questions/65662277/android-share-apk-via-share-option-for-android-version-7-0 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…