Android Q 10.0 应用内下载安装更新软件方法及包名BUG解决NullPointerException

话说安卓10.0更新了有一段时间了,很多功能的实现又有了变化。公司项目需要做一个软件的检查、更新下载和安装的功能,下面讲一下实现方法和BUG解决办法。

public static void updateInstallApk(Context context, String saveFileName) {
        File file = new File(saveFileName);
        Uri data;
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        if (Build.VERSION.SDK_INT >= 29) {
            data = FileProvider.getUriForFile(context,"com.china.oec.statistics.fileProvider", file);
            // 给目标应用一个临时授权
            intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        } else {
            data = Uri.fromFile(file);
        }
        intent.setDataAndType(data, "application/vnd.android.package-archive");
        context.startActivity(intent);
    }

"com.china.oec.statistics.fileProvider"这一块是你项目的包名,或许你会使用如下的方法:

BuildConfig.APPLICATION_ID + ".fileProvider"

或许会这样写:

context.getPackageName() + ".fileprovider",

然后你会这样报错:
java.lang.NullPointerException: Attempt to…(android.content.pm.PackageManager, java.lang.String)’ on a null object reference
所以呢,就直接把项目的包名如我上面那样直接写进去,不要拼接.fileprovider

你可能感兴趣的:(Andriod)