如何在android N上以编程方式安装Application
作者:互联网
我遵循这些步骤
但对于sdk版本N,android系统在安装应用程序时显示警告对话框“软件包安装程序已停止”.
:1 – 将以下内容添加到AndroidManifest.xml:
<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/paths"/>
</provider>
2 – 将以下paths.xml文件添加到src,main中的res上的xml文件夹(如果不存在,创建它)
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
name="external_file"
path="."/>
</paths>
pathName是上面示例性内容uri示例中所示的pathName,pathValue是系统上的实际路径.放一个“.”是个好主意.对于上面的pathValue,如果你不想添加任何额外的子目录.
3 – 将以下代码写入Run Your Apk文件:
File file = "path of yor apk file";
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
Uri fileUri = FileProvider.getUriForFile(getBaseContext(),
getApplicationContext().getPackageName() + ".provider", file);
Intent intent = new Intent(Intent.ACTION_VIEW, fileUri);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true) ;
intent.setDataAndType(fileUri, "application/vnd.android" + ".package-
archive");
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK |
Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-
archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
解决方法:
首先,将目标SDK版本设置为26(Android Oreo)以使一切正常.
然后按照以下步骤操作:
- How to check if the installation is allowed?
您可以使用活动中的getPackageManager().canRequestPackageInstalls()来检查所有位置.请注意,如果您未声明该权限或选择了错误的SDK版本,则此布尔值始终为false.
- What permission i need to request?
您需要将Mainfest.permission.REQUEST_PACKAGE_INSTALLS声明到您的应用清单中,所以这是:
<uses-permission android:name="android.permission.REQUEST_PACKAGE_INSTALLS" />
- How can i prompt user to grant permission?
在这里你可以这样做:
startActivity(new Intent(android.provider.Settings.ACTION_MANAGE_UNKNOWN_APP_SOURCES, Uri.parse("package:".concat("your.package.name"))));
- How to prompt user to install apk?
完成所有其他步骤后,您可以使用以下代码提示用户安装包:
Intent installIntent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
installIntent.putExtra(Intent.EXTRA_RETURN_RESULT, true); //this is necessary if you want to know if the installation was success, failed or cancelled.
installIntent.setData(Uri.fromFile(new File("/sdcard/yourapk.apk"))); //replace yourapk to your apk name
startActivityForResult(installIntent, 1);
您可能还需要添加installIntent.putExtra(Intent.EXTRA_RETURN_RESULT,true);如果您想知道安装是否成功,失败或取消.
标签:android,apk,android-install-apk 来源: https://codeday.me/bug/20190710/1426791.html