Defs.java 498 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

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