Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

bluetooth - Android Share APK via share option for >= android version 7.0

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...