赞
踩
在13.0的系统定制化开发中,对于系统内置app中用代码调用系统安装接口安装app时抛出Permission Denial: that is not exported from UID 1000的异常,查询资料这个异常发现通常是由于Uri权限导致的问题,这就需要看PMS在安装的时候,需要什么权限,然后根据相关的日志分析
相关的安装流程,授予权限就可以了,接下来分析相关的代码流程
例如:
- File apk = new File(...);
- Intent intent = new Intent(Intent.ACTION_VIEW);
- intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
- Uri uri = FileProvider.getUriForFile(this, "com.example.demo.fileprovider", apk);
- intent.setDataAndType(uri, "application/vnd.android.package-archive");
- startActivity(intent);
在上面的代码 通过在参数中增加URI在安装的过程中需要权限
在执行这样的代码会抛出异常是由于在安装时要申请uri权限,这就需要分析在安装过程中,pms是具体怎么授予Uri权限的,然后来处理Uri权限的问题
frameworks\base\services\core\java\com\android\server\uri\UriGrantsManagerService.java
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。