是否可以跟踪 Android 系统上应用程序的安装/卸载操作?到目前为止,我无法找到合适的 Intent Action 或 Broadcast 事件。
我正在为诸如日历或呼叫日志更改的观察者之类的应用程序寻找观察者。是否存在 CONTENT_URI 或广播事件?
问候
是否可以跟踪 Android 系统上应用程序的安装/卸载操作?到目前为止,我无法找到合适的 Intent Action 或 Broadcast 事件。
我正在为诸如日历或呼叫日志更改的观察者之类的应用程序寻找观察者。是否存在 CONTENT_URI 或广播事件?
问候
您可以为软件包安装和卸载创建广播接收器。
<receiver android:name=".YourReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_INSTALL" />
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package"/>
</intent-filter>
</receiver>
欲了解更多信息,请访问链接