异常
异常.png问题原因
此处遇到的问题原因是安装包没有可执行权限
解决方法
修改安装包的权限
// 命令
val command = arrayListOf("chmod", "777", apkPath)
// 执行
ProcessBuilder(command).start()
此处遇到的问题原因是安装包没有可执行权限
修改安装包的权限
// 命令
val command = arrayListOf("chmod", "777", apkPath)
// 执行
ProcessBuilder(command).start()
本文标题:Android 解析安装包
本文链接:https://www.haomeiwen.com/subject/bcfhgctx.html
网友评论