2017-05-06 53 views
0

我試圖在Google Play商店之外下載並安裝我的Android更新。 使用本教程作爲指南(http://simpledeveloper.com/how-to-update-android-apk-outside-the-playstore/)我在我的應用程序中插入代碼,以便從我的谷歌驅動器下載我的應用程序(即具有更新)的apk文件。Android錯誤解析包 - 部分下載

該應用程序只下載部分文件(也許第一個14KB到100KB)。

我在做什麼錯?

這裏是我的代碼:

public class ApkUpdateTask 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 c = (HttpURLConnection) url.openConnection(); 
      c.setRequestMethod("GET"); 
      c.setDoOutput(true); 
      c.connect(); 

      String PATH = "/storage/emulated/0/Download/"; 
      //String PATH = Environment.getExternalStorageDirectory().getPath(); 
      File file = new File(PATH); 
      //file.mkdirs(); 
      File outputFile = new File(file, "sonandso.apk"); 
      if(outputFile.exists()){ 
       outputFile.delete(); 
      } 
      FileOutputStream fos = new FileOutputStream(outputFile); 

      InputStream is = c.getInputStream(); 

      byte[] buffer = new byte[1024]; 
      int len1; 
      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(new File(Environment.getExternalStorageDirectory().getPath())), "blahblah.apk"); 
      intent.setDataAndType(Uri.fromFile(new File("/storage/emulated/0/Download/")), "blahblah.apk"); 
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); // without this flag android returned a intent error! 
      context.startActivity(intent); 


     } catch (Exception e) { 
      Log.e("UpdateAPP", "Update error! " + e.getMessage()); 
     } 
     return null; 
    } 
} 

注:

  1. 我已簽名和未簽名的apk。兩者都無法下載完整的應用程序。
  2. 我將apk的api級別設置爲與設備相同的api級別(在gradle構建文件中,我使用的是Android Studio)。 Android版本是5.1.1(它必須是因爲該項目)。
  3. 我從Main Fragment調用上面列出的代碼(我將其放入單獨的類文件中)。這應該從主要活動本身中調用嗎?
  4. 我正在嘗試寫入內部存儲器而不是外部SD卡。這可能是問題嗎?如果是這樣 - 我如何將它寫入內部存儲器?
  5. 我已經嘗試使用「Environment.getExternalStorageDirectory()。getPath()」作爲路徑以及那也沒有工作。見#4的問題。

回答

0

現在,我決定把這個放在架子上,看看使用基於谷歌API的方法,我仍在研究。