自我更新应用

时间:2013-02-20 14:23:36

标签: android apk updating self-updating

TL:DR;版本;)

  • 我的应用应该在没有用户互动的情况下运行(自动启动等工作)

  • 它应该在没有任何用户交互的情况下自行更新(通过apk)

  • 可以使用有根设备

问题:

  • 从服务器查询较新的apk
  • 当使用(view?)intent启动apk时,会弹出“安装应用”提示并需要用户确认

如何在没有任何用户互动的情况下解决此问题?

http://code.google.com/p/auto-update-apk-client/ 这似乎是一个解决方案,但必须有更好的方法。

我已经找到了这个:Install Application programmatically on Android

但这并不能解决我的问题。

3 个答案:

答案 0 :(得分:34)

解决了! :d

它只适用于 rooted 设备,但效果很好。 使用unix cmd“pm”(packageManager)允许您在以root身份执行时从sdcard安装apks。

希望这可以在将来帮助一些人。

public static void installNewApk()
{
        try
        {
            Runtime.getRuntime().exec(new String[] {"su", "-c", "pm install -r /mnt/internal/Download/fp.apk"});
        }
        catch (IOException e)
        {
            System.out.println(e.toString());
            System.out.println("no root");
        }
}

所需权限:

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

答案 1 :(得分:5)

我的建议是使用更新应用程序的插件机制instad。您可以从Web动态加载类并在应用程序内运行它们,而无需任何用户交互。互联网上有很多资源:

How to load a Java class dynamically on android/dalvik?

http://android-developers.blogspot.com/2011/07/custom-class-loading-in-dalvik.html

答案 2 :(得分:0)

如果su -c不起作用,请尝试su 0(只有具有root权限的设备才能执行su!)

完整答案如下:

private void installNewApk()
    {
        String path = mContext.getFilesDir().getAbsolutePath() + "/" + LOCAL_FILENAME;
        mQuickLog.logD("Install at: " + path);
        ProcessUtils.runProcessNoException(mQuickLog, "su", "0", "pm", "install", "-r", path);
    }

定义了此类:

public class ProcessUtils {
    Process process;
    int errCode;
    public ProcessUtils(String ...command) throws IOException, InterruptedException{
        ProcessBuilder pb = new ProcessBuilder(command);
        this.process = pb.start();
        this.errCode = this.process.waitFor();
    }

    public int getErrCode() {
        return errCode;
    }

    public String getOutput() throws IOException {
        InputStream inputStream = process.getInputStream();
        InputStream errStream = process.getErrorStream();
        BufferedReader br = new BufferedReader(new InputStreamReader(inputStream));
        String line;
        StringBuilder sb = new StringBuilder();
        while ((line = br.readLine()) != null) {
            sb.append(line + System.getProperty("line.separator"));
        }

        br = new BufferedReader(new InputStreamReader(errStream));
        while ((line = br.readLine()) != null) {
            sb.append(line + System.getProperty("line.separator"));
        }
        return sb.toString();
    }


    public static String runProcess(String ...command) throws IOException, InterruptedException {
        ProcessUtils p = new ProcessUtils(command);
        if (p.getErrCode() != 0) {
            // err
        }
        return p.getOutput();
    }

    public static void runProcessNoException(String ...command) {
        try {
            runProcess(command);
        } catch (InterruptedException | IOException e) {
            // err
        }
    }
}