Defs.java 405 Bytes
Newer Older
Amit Davidi's avatar
Amit Davidi committed
1 2
package com.wix.reactnativenotifications;

3
public interface Defs {
Amit Davidi's avatar
Amit Davidi committed
4 5 6 7
    String LOGTAG = "ReactNativeNotifs";
    String GCM_SENDER_ID_ATTR_NAME = "com.wix.reactnativenotifications.gcmSenderId";

    String TOKEN_RECEIVED_EVENT_NAME = "remoteNotificationsRegistered";
8 9 10

    String NOTIFICATION_RECEIVED_EVENT_NAME = "notificationReceived";
    String NOTIFICATION_OPENED_EVENT_NAME = "notificationOpened";
Amit Davidi's avatar
Amit Davidi committed
11
}