Skip to content

Commit 8d4f962

Browse files
committed
Give constants package visibility
1 parent 42f2cd1 commit 8d4f962

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

com.unity.mobile.notifications/Runtime/Android/Plugins/com/unity/androidnotifications/UnityNotificationManager.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,24 @@ public class UnityNotificationManager extends BroadcastReceiver {
5252
protected UnityNotificationBackgroundThread mBackgroundThread;
5353
protected Random mRandom;
5454

55-
protected static final String TAG_UNITY = "UnityNotifications";
56-
57-
protected static final String KEY_FIRE_TIME = "fireTime";
58-
protected static final String KEY_ID = "id";
59-
protected static final String KEY_INTENT_DATA = "data";
60-
protected static final String KEY_LARGE_ICON = "largeIcon";
61-
protected static final String KEY_REPEAT_INTERVAL = "repeatInterval";
62-
protected static final String KEY_NOTIFICATION = "unityNotification";
63-
protected static final String KEY_NOTIFICATION_ID = "com.unity.NotificationID";
64-
protected static final String KEY_SMALL_ICON = "smallIcon";
65-
protected static final String KEY_CHANNEL_ID = "channelID";
66-
protected static final String KEY_SHOW_IN_FOREGROUND = "com.unity.showInForeground";
67-
protected static final String KEY_NOTIFICATION_DISMISSED = "com.unity.NotificationDismissed";
68-
69-
protected static final String NOTIFICATION_CHANNELS_SHARED_PREFS = "UNITY_NOTIFICATIONS";
70-
protected static final String NOTIFICATION_CHANNELS_SHARED_PREFS_KEY = "ChannelIDs";
71-
protected static final String NOTIFICATION_IDS_SHARED_PREFS = "UNITY_STORED_NOTIFICATION_IDS";
72-
protected static final String NOTIFICATION_IDS_SHARED_PREFS_KEY = "UNITY_NOTIFICATION_IDS";
55+
static final String TAG_UNITY = "UnityNotifications";
56+
57+
static final String KEY_FIRE_TIME = "fireTime";
58+
static final String KEY_ID = "id";
59+
static final String KEY_INTENT_DATA = "data";
60+
static final String KEY_LARGE_ICON = "largeIcon";
61+
static final String KEY_REPEAT_INTERVAL = "repeatInterval";
62+
static final String KEY_NOTIFICATION = "unityNotification";
63+
static final String KEY_NOTIFICATION_ID = "com.unity.NotificationID";
64+
static final String KEY_SMALL_ICON = "smallIcon";
65+
static final String KEY_CHANNEL_ID = "channelID";
66+
static final String KEY_SHOW_IN_FOREGROUND = "com.unity.showInForeground";
67+
static final String KEY_NOTIFICATION_DISMISSED = "com.unity.NotificationDismissed";
68+
69+
static final String NOTIFICATION_CHANNELS_SHARED_PREFS = "UNITY_NOTIFICATIONS";
70+
static final String NOTIFICATION_CHANNELS_SHARED_PREFS_KEY = "ChannelIDs";
71+
static final String NOTIFICATION_IDS_SHARED_PREFS = "UNITY_STORED_NOTIFICATION_IDS";
72+
static final String NOTIFICATION_IDS_SHARED_PREFS_KEY = "UNITY_NOTIFICATION_IDS";
7373

7474
// Constructor with zero parameter is necessary for system to call onReceive() callback.
7575
public UnityNotificationManager() {

0 commit comments

Comments
 (0)