Merge branch 'main' of http://61.169.135.146:8081/git/xymp/TermApp
commit
a9fd536a8a
@ -0,0 +1,16 @@
|
||||
package com.xypower.mpapp;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
|
||||
public class HeartBeatResponseReceiver extends BroadcastReceiver {
|
||||
|
||||
@Override
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
String action = intent.getAction();
|
||||
if ("heartbeat".equals(action)) {
|
||||
MicroPhotoService.infoLog("收到heartbeat广播");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue