如何以编程方式静默更新apk并重新启动应用程序?

时间:2016-03-11 15:03:49

标签: android

我在StackOverFlow和其他网站上尝试了很多方法,但它并没有真正起作用。

我的问题是我需要更新这个应用程序,更新后,它应该会自动重新启动相同的应用程序(更新)。

这是我的代码:

private synchronized void runRootUpdate() {    
    // Install Updated APK
    String command = "pm install -r " + downloadPath + apkFile;
    Process proc = Runtime.getRuntime().exec(new String[] {"su", "-c", command});
    int test = proc.waitFor(); // Error is here.

    if (proc.exitValue() == 0) {
        // Successfully installed updated app
        doRestart()
    } else {
        // Fail
        throw new Exception("Root installation failed");
    }
}

private void doRestart() {
    Intent mStartActivity = new Intent(context, MainActivity.class);
    int mPendingIntentId = 123456;
    PendingIntent mPendingIntent = PendingIntent.getActivity(context, mPendingIntentId, mStartActivity, PendingIntent.FLAG_CANCEL_CURRENT);
    AlarmManager mgr = (AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
    mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 100, mPendingIntent);
    System.exit(0);
}

看看我的"错误就在这里。"我的旧应用程序将安装一个新的更新的应用程序并自行终止,因此没有proc.waitFor()并最终回到主屏幕但是正在安装新的更新的应用程序。但是,我需要它自己回来。有什么方法可以做到吗?

5 个答案:

答案 0 :(得分:7)

不是设置闹钟,而是专门为此目的注册了一个Manifest注册的BroadcastReceiver。它可以收听android.intent.action.PACKAGE_REPLACED(注意:此常量中缺少单词操作)或android.intent.action.MY_PACKAGE_REPLACED

<receiver android:name="...">
    <intent-filter>
        <action android:name="android.intent.action.PACKAGE_REPLACED"></action>
        <data android:scheme="package" android:path="com.your.package" /> 
    </intent-filter>
</receiver>

重新安装后,您的接收器将收到此消息,您将能够启动活动

答案 1 :(得分:0)

更新应用程序涉及终止其所有进程。您应该在启动pm命令之前设置闹钟(延迟超过100毫秒)

答案 2 :(得分:0)

首先,您需要知道存储.apk文件的位置,因为在升级应用程序时这很重要。

要以静默方式升级和启动应用程序,您需要按照以下步骤操作。

在升级您的应用程序时,确保您的SD卡中有最新的.apk文件。如果它已经通过下面的意图启动它以进行升级

translations[fieldName]

以上代码将使用android的默认行为升级您的应用程序。

创建一个广播接收器,知道何时执行升级

File file = new File(Environment.getExternalStorageDirectory(), "app-debug.apk"); // mention apk file path here
                if (file.exists()) {
                    Intent intent = new Intent(Intent.ACTION_VIEW);
                    intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
                    startActivity(intent);
                } else {
                    Toast.makeText(UpdateActivity.this, "file not exist", Toast.LENGTH_SHORT).show();
                }

如果你正在使用api&gt; 12使用

    <receiver android:name=".receiver.OnUpgradeReceiver">
                <intent-filter>
// Note: This intent can is available starting from API 12
                    <action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
                </intent-filter>
            </receiver>

如果你有api&lt; = 12使用

<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
                    </intent-filter>

创建广播接收器,以便在更新后启动广播并启动您想要的活动

示例:

  <action android:name="android.intent.action.PACKAGE_REPLACED" />
    <data android:scheme="package" android:path="your.app.package" />

以上广播接收器可帮助您静默启动应用程序。

希望这些可以帮助你。

答案 3 :(得分:0)

嗯......当你使用root安装时,为什么要使用这个 hard metod ?为什么不尝试创建简单的shell脚本来更新应用程序?然后你不必设置警报和做其他事情:

脚本(How to pass argumentsHow to start app from terminal):

am kill com.myapp.package
pm install -r $1
am start -n packageName/pkgName.ActivityName

应用代码:

String command = "sh script.sh " + downloadPath + apkFile;
Process proc = Runtime.getRuntime().exec(new String[] {"su", "-c", command});

答案 4 :(得分:0)

使用this播放核心库应用内更新来实现

dependencies {
implementation 'com.google.android.play:core:1.5.0'
...}