You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static final String PUSH_MESSAGE = "com.xiaomi.push.message";
public static final String PUSH_COMMAND = "com.xiaomi.push.command";
public void registerPush() {
IntentFilter filter = new IntentFilter();
filter.addAction(PUSH_COMMAND);
filter.addAction(PUSH_MESSAGE);
registerReceiver(mReceiver, filter);
}
MJPushBroadcastReceiver mReceiver = new MJPushBroadcastReceiver() ;
The text was updated successfully, but these errors were encountered:
按照demo 方式进行处理
<uses-permission
android:name="com.xiaomi.permission.AUTH_SERVICE" />
The text was updated successfully, but these errors were encountered: