HMSPushReceiver.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * * EaseMob CONFIDENTIAL
  3. * __________________
  4. * Copyright (C) 2017 EaseMob Technologies. All rights reserved.
  5. *
  6. * NOTICE: All information contained herein is, and remains
  7. * the property of EaseMob Technologies.
  8. * Dissemination of this information or reproduction of this material
  9. * is strictly forbidden unless prior written permission is obtained
  10. * from EaseMob Technologies.
  11. */
  12. package com.hyphenate.chatuidemo.receiver;
  13. import android.content.Context;
  14. import android.os.Bundle;
  15. import com.huawei.hms.support.api.push.PushReceiver;
  16. import com.hyphenate.chat.EMClient;
  17. import com.hyphenate.util.EMLog;
  18. public class HMSPushReceiver extends PushReceiver{
  19. private static final String TAG = HMSPushReceiver.class.getSimpleName();
  20. @Override
  21. public void onToken(Context context, String token, Bundle extras){
  22. if(token != null && !token.equals("")){
  23. //没有失败回调,假定token失败时token为null
  24. EMLog.d("HWHMSPush", "register huawei hms push token success token:" + token);
  25. EMClient.getInstance().sendHMSPushTokenToServer(token);
  26. }else{
  27. EMLog.e("HWHMSPush", "register huawei hms push token fail!");
  28. }
  29. }
  30. }