android-以编程方式安装APK时解析错误
作者:互联网
我正在尝试通过从应用程序内部下载并安装更高版本的APK,为应用程序创建一种更新自身的机制.
我在服务器上有一个APK,如果我直接导航到URI,然后打开.apk文件,则安装得很好.当我尝试以编程方式安装它时,问题就来了.我收到“解析错误-解析程序包时出现问题”
目标电话允许从未知来源进行安装,并且在AndroidManifest.xml中,我请求以下权限:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES"/>
<uses-permission android:name="android.permission.REQUEST_WRITE_PERMISSION"/>
执行更新的代码已从StackOverflow上的另一个线程获取,并进行了略微更改以适合我的特定情况.
public class UpdateApp extends AsyncTask<String,Void,Void> {
private Context context;
public void setContext(Context contextf){
context = contextf;
}
@Override
protected Void doInBackground(String... arg0) {
try {
URL url = new URL(arg0[0]);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setDoOutput(true);
conn.connect();
File file = context.getCacheDir();
file.mkdirs();
File outputFile = new File(file, "update.apk");
if(outputFile.exists()){
outputFile.delete();
}
FileOutputStream fos = new FileOutputStream(outputFile);
InputStream is = conn.getInputStream();
byte[] buffer = new byte[1024];
int len1 = 0;
while ((len1 = is.read(buffer)) != -1) {
fos.write(buffer, 0, len1);
}
fos.close();
is.close();
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(outputFile), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
} catch (Throwable ex) {
Toast.makeText(context, ex.toString(), Toast.LENGTH_LONG).show();
}
return null;
}
}
为了理解为什么从代码内安装APK时,APK生成错误但从服务器下载时无问题安装,我可以尝试什么?
该应用程序是为API 23构建的,尽管完成后仍需要与API 24一起使用.
解决方法:
您将必须使您缓存的apk文件具有全球可读性.
在is.close();之后
放
outputFile.setReadable(true,false);
标签:apk,auto-update,android 来源: https://codeday.me/bug/20191024/1924648.html