Back to project page MovisensGattSensorExample.
The source code is released under:
GNU General Public License
If you think the Android project MovisensGattSensorExample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.movisens.gattsensorexample.receivers; //from ww w .j ava2 s .c om import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.util.Log; public class UpdateAppReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if (Intent.ACTION_PACKAGE_REPLACED.equals(intent.getAction())) { Log.d("UpdateAppReceiver", "App updated"); } } }