从未调用广播接收器MY_PACKAGE_REPLACED

时间:2016-08-18 17:57:12

标签: android broadcastreceiver auto-update

我有以下应用场景: 1)一个自己更新的应用程序 2)设备已植根 3)在线检查版本,如果新版本在线,则下载“apk”文件并安装

一切正常,但安装新版本后APP不会重启。我尝试设置MY_PACKAGE_REPLACED广播接收器,但从未调用过。该应用程序安装新的并停止,但应用程序中的接收器永远不会被触发。

我做错了什么?

代码: 清单

<receiver android:name=".receivers.OnUpgradeReceiver">
            <intent-filter>
              <action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
              <data android:scheme="package"/>
          </intent-filter>
        </receiver>

我尝试了带有DATA部分的接收器清单代码而没有...它仍然无效!!

广播接收机类

public class OnUpgradeReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        final String msg="intent:"+intent+" action:"+intent.getAction();
        Log.e("OLE","RECEIVEEEEEEEEEEEEEEEEEEEEEED: "+msg);
    }}

APP UPDATE PART

Process p;  
                    try {  

                        //Runtime.getRuntime().exec (new String[]{"su", "-c", "pm install -r " + apkLocation +  "party.net"});

                            // Preform su to get root privledges  
                            p = Runtime.getRuntime().exec("su");   

                            // Attempt to write a file to a root-only  
                            DataOutputStream os = new DataOutputStream(p.getOutputStream());  
                            os.writeBytes("/system/bin/pm install -r"+apkLocation+"\n");  

                            // Close the terminal  
                            os.writeBytes("exit\n");  
                            os.flush();  
                            try {  
                                    p.waitFor();
                                    if (p.exitValue() != 255) {  
                                            Log.e("OLE","Sucess :-)");
                                    }  
                                    else {  
                                        Log.e("OLE","Fail 1");
                                    }  

                            } catch (InterruptedException e) {  
                                Log.e("OLE","Fail 2");
                            }  
                    } catch (IOException e) {  
                        Log.e("OLE","Fail 3 "+e.getMessage());
                    }

解决! 问题是安装在上一个VERSION之上的新VERSION没有设置广播接收器!!!

1 个答案:

答案 0 :(得分:0)

如果新应用未运行,则无法接收新应用的 Intent,最佳解决方案是使用另一个应用 B 接收 Intent 并运行新应用 A。