分享一個android靜默安裝,安裝後從新啓動app的方法

 一:需求簡介linux

  以前boss提出一個需求,運行在廣告機上的app,須要完成自動升級的功能,廣告機是非觸摸屏的,不能經過手動點擊,因此app必須作到自動下載,自動安裝升級,而且安裝完成後,app還要繼續運行,最好不借助其它app來實現以上功能。android

 二:實現思路app

  實現這個功能第一個想到的方法就是靜默安裝,因爲廣告機已經root,靜默安裝比較順利,安裝app的主要代碼以下:spa

/*
  @pararm
apkPath 等待安裝的app全路徑,如:/sdcard/app/app.apk
**/
private
static boolean clientInstall(String apkPath) { PrintWriter PrintWriter = null; Process process = null; try { process = Runtime.getRuntime().exec("su"); PrintWriter = new PrintWriter(process.getOutputStream()); PrintWriter.println("chmod 777 " + apkPath); PrintWriter .println("export LD_LIBRARY_PATH=/vendor/lib:/system/lib"); PrintWriter.println("pm install -r " + apkPath); // PrintWriter.println("exit"); PrintWriter.flush(); PrintWriter.close(); int value = process.waitFor(); Logger.e("靜默安裝返回值:"+value); return returnResult(value); } catch (Exception e) { e.printStackTrace(); Logger.e("安裝apk出現異常"); } finally { if (process != null) { process.destroy(); } } return false; }

  以上方法能順利安裝,但不能實現軟件安裝完成後,軟件還能繼續運行,由於安裝後,當前app的進程已經被kill了。沒法實現boss提出的,安裝後軟件正常運行的需求,此時若是咱們還想着用android來實現這個需求,是沒法實現的,由於app進程被kill了,因此須要藉助第三方來啓動咱們的app,我第一時間想到的就是linux執行am start命令,但這個命令不能當即執行,因此須要sleep來實現這個需求,命令格式以下 sleep 時間(單位秒),am start -n ,完整代碼以下:code

private void execLinuxCommand(){ 
       String cmd= "sleep 120; am start -n 包名/包名.第一個Activity的名稱";
        //Runtime對象
        Runtime runtime = Runtime.getRuntime();
        try {
            Process localProcess = runtime.exec("su");
            OutputStream localOutputStream = localProcess.getOutputStream();
            DataOutputStream localDataOutputStream = new DataOutputStream(localOutputStream);
            localDataOutputStream.writeBytes(cmd);
            localDataOutputStream.flush();
            Logger.e("設備準備重啓");
        } catch (IOException e) {
            Logger.i(TAG+"strLine:"+e.getMessage());
            e.printStackTrace();

        }
    }

   涉及到的權限:對象

<uses-permission android:name="android.permission.INSTALL_PACKAGES" />

   注意:不是全部root過的設備,都能執行Process localProcess = runtime.exec("su");這個須要硬件支持,這個坑我遇到過。經過以上兩個方法就能實現靜默安裝,安裝完成後,app自動需行的需求。blog

相關文章
相關標籤/搜索