我已经测试过此代码,并且可以在Lolipop,棉花糖,牛轧糖,奥利奥(Oreo)上工作,但不能在Lolipop上工作,我需要帮助
我想立即进行自动更新和自动安装。它是本地的,因此它是非市场应用程序。
贝洛是代码。
String path = Environment.getExternalStorageDirectory() + "/download/" + "myapp.apk";
MimeTypeMap mime = MimeTypeMap.getSingleton();
File newFile = new File(path);
String ext = newFile.getName().substring(newFile.getName().lastIndexOf(".") + 1);
String type = mime.getMimeTypeFromExtension(ext);
try {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri contentUri = FileProvider.getUriForFile(context, "com.mypackage.fileProvider", newFile);
intent.setDataAndType(contentUri, type);
} else {
intent.setDataAndType(Uri.fromFile(newFile), type);
}
startActivity(intent);
} catch (ActivityNotFoundException anfe) {
Log.i("update_statut", "Error : " + anfe.getMessage());
}
这是我的清单权限
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />