恢复FCM令牌,但未调用onMessageRecived

时间:2019-03-05 10:50:09

标签: android firebase firebase-cloud-messaging

我已经在其他应用中添加了以下代码,但在这里无法正常工作

struct Size {
    var width, height, depth: Int
}

extension Size {
    init(width: Int, height: Int) {
        self.init(width: width, height: height, depth: 1)
    }
}

Size(width: 1, height: 1)
Size(width: 1, height: 1, depth: 1)

0 个答案:

没有答案