Android: how to open an apk file after downloading for auto-update?

后端 未结 2 694
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-15 12:45

I have an application that I\'d like to add auto-update functionality (it\'s not in the marketplace). I have all the code in place that would check to see if there is an up

相关标签:
2条回答
  • 2020-12-15 13:01

    The answer above was for pre-API-24.

    If your app targets API 24 or more (and it should), you need to use something else (otherwise you get FileUriExposedException, as described here) :

        File apkFile = new File(...);
        Intent intent = new Intent(Intent.ACTION_VIEW);
        Uri fileUri = android.support.v4.content.FileProvider.getUriForFile(this, getApplicationContext().getPackageName() + ".provider", apkFile);
        intent.setDataAndType(fileUri, "application/vnd.android.package-archive");
        intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        startActivity(intent);
    

    provider_paths.xml:

    <?xml version="1.0" encoding="utf-8"?>
    <paths xmlns:android="http://schemas.android.com/apk/res/android">
        <!--<external-path name="external_files" path="."/>-->
        <external-path path="Android/data/YOUR_PACKAGE_NAME" name="files_root" />
        <external-path path="." name="external_storage_root" />
    </paths>
    

    where YOUR_PACKAGE_NAME is your app's package name.

    manifest:

        <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="${applicationId}.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths"/>
        </provider>
    
    0 讨论(0)
  • 2020-12-15 13:08

    This will start the installation process

    File apkFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/packageName.apk");
    Intent intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
    startActivity(intent);
    
    0 讨论(0)
提交回复
热议问题