Android app update broadcast

前端 未结 3 1632
暗喜
暗喜 2020-12-18 02:30

So, im working on something that requires me to know when another application on the device is being updated. So my question is quite simple, does lets say YouTube or Spotif

3条回答
  •  伪装坚强ぢ
    2020-12-18 02:52

    According to android docs: Broadcast Action: A new version of your application has been installed over an existing one. This is only sent to the application that was replaced. It does not contain any additional data; to receive it, just use an intent filter for this action.

    
       
       
    
    

    And onReceive method from your BroadcastReceiver should be:

    @Override
    public void onReceive(Context context, Intent intent) {
        // action to do
    
    }
    

提交回复
热议问题