IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) 2020 WildFireChat. All rights reserved.
 */
 
package cn.wildfirechat;
 
public interface PushType {
    int XIAOMI = 1;
    int HMS = 2;
    int MEIZU = 3;
    int VIVO = 4;
    int OPPO = 5;
 
    // 如果需要集成其他推送方式,请勿和上面的冲突
}