我想找到我的应用程序的升级。所以我一直在使用这个代码来找到它 PACKAGE_REPLACED,但突然我无法接收到我的应用程序包替换的事件。
我改为 MY_PACKAGE_REPLACED。还是同样的问题。
分析了一些堆栈溢出问题。没运气。尝试了所有的答案。
我的目标 sdk 版本是 30:
清单代码:
<receiver android:name=".Receiver" android:enabled="true" android:debuggable="true" android:exported="true"
tools:ignore="HardcodedDebugMode">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
<intent-filter>
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
收货人代码
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Log.d(TAG, "action = " + action);
if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
Log.d(TAG, "BOOT COMPLETED, Ping start...");
} else if (Intent.ACTION_PACKAGE_REPLACED.equals(action)) {
Log.d(TAG, "PACKAGE REPLACED, upgrade ping...");
} else {
//default action is network changed
Log.d(TAG, "network status changed...");
}
}