|
27 | 27 | import android.graphics.Bitmap;
|
28 | 28 | import android.graphics.Color;
|
29 | 29 | import android.net.Uri;
|
30 |
| -import android.support.v4.app.NotificationCompat; |
31 |
| -import android.support.v4.app.NotificationCompat.MessagingStyle.Message; |
| 30 | +import androidx.core.app.NotificationCompat; |
| 31 | +import androidx.core.app.NotificationCompat.MessagingStyle.Message; |
32 | 32 | import android.support.v4.media.session.MediaSessionCompat;
|
33 | 33 |
|
34 | 34 | import org.json.JSONArray;
|
|
45 | 45 |
|
46 | 46 | import static android.os.Build.VERSION.SDK_INT;
|
47 | 47 | import static android.os.Build.VERSION_CODES.O;
|
48 |
| -import static android.support.v4.app.NotificationCompat.DEFAULT_LIGHTS; |
49 |
| -import static android.support.v4.app.NotificationCompat.DEFAULT_SOUND; |
50 |
| -import static android.support.v4.app.NotificationCompat.DEFAULT_VIBRATE; |
51 |
| -import static android.support.v4.app.NotificationCompat.PRIORITY_MAX; |
52 |
| -import static android.support.v4.app.NotificationCompat.PRIORITY_MIN; |
53 |
| -import static android.support.v4.app.NotificationCompat.VISIBILITY_PUBLIC; |
54 |
| -import static android.support.v4.app.NotificationCompat.VISIBILITY_SECRET; |
| 48 | +import static androidx.core.app.NotificationCompat.DEFAULT_LIGHTS; |
| 49 | +import static androidx.core.app.NotificationCompat.DEFAULT_SOUND; |
| 50 | +import static androidx.core.app.NotificationCompat.DEFAULT_VIBRATE; |
| 51 | +import static androidx.core.app.NotificationCompat.PRIORITY_MAX; |
| 52 | +import static androidx.core.app.NotificationCompat.PRIORITY_MIN; |
| 53 | +import static androidx.core.app.NotificationCompat.VISIBILITY_PUBLIC; |
| 54 | +import static androidx.core.app.NotificationCompat.VISIBILITY_SECRET; |
55 | 55 |
|
56 | 56 | /**
|
57 | 57 | * Wrapper around the JSON object passed through JS which contains all possible
|
|
60 | 60 | */
|
61 | 61 | public final class Options {
|
62 | 62 | // Default Channel ID for SDK < 26
|
63 |
| - static final String DEFAULT_CHANNEL_ID = "channel-id-default"; |
| 63 | + static final String DEFAULT_CHANNEL_ID = "default-channel-id"; |
64 | 64 |
|
65 | 65 | // Silent channel
|
66 |
| - static final String CHANNEL_ID_SILENT = "channel-id-silent"; |
67 |
| - static final CharSequence CHANNEL_NAME_SILENT = "Silent Notifications"; |
| 66 | + static final String SILENT_CHANNEL_ID = "silent-channel-id"; |
| 67 | + static final CharSequence SILENT_CHANNEL_NAME = "Silent Notifications"; |
68 | 68 |
|
69 | 69 | // Vibrate only channel
|
70 |
| - static final String CHANNEL_ID_VIBRATE = "vibrate-channel-id"; |
71 |
| - static final CharSequence CHANNEL_NAME_VIBRATE = "Low Priority Notifications"; |
| 70 | + static final String VIBRATE_CHANNEL_ID = "vibrate-channel-id"; |
| 71 | + static final CharSequence VIBRATE_CHANNEL_NAME = "Low Priority Notifications"; |
72 | 72 |
|
73 | 73 | // Sound only channel
|
74 |
| - static final String CHANNEL_ID_SOUND = "sound-channel-id"; |
75 |
| - static final CharSequence CHANNEL_NAME_SOUND = "Medium Priority Notifications"; |
| 74 | + static final String SOUND_CHANNEL_ID = "sound-channel-id"; |
| 75 | + static final CharSequence SOUND_CHANNEL_NAME = "Medium Priority Notifications"; |
76 | 76 |
|
77 | 77 | // Sound and vibrate channel
|
78 |
| - static final String CHANNEL_ID_SOUND_VIBRATE = "sound-vibrate-channel-id"; |
79 |
| - static final CharSequence CHANNEL_NAME_SOUND_VIBRATE = "High Priority Notifications"; |
| 78 | + static final String SOUND_VIBRATE_CHANNEL_ID = "sound-vibrate-channel-id"; |
| 79 | + static final CharSequence SOUND_VIBRATE_CHANNEL_NAME = "High Priority Notifications"; |
80 | 80 |
|
81 | 81 | // Key name for bundled sound extra
|
82 | 82 | static final String EXTRA_SOUND = "NOTIFICATION_SOUND";
|
@@ -446,7 +446,7 @@ public Integer getVolume() {
|
446 | 446 | /**
|
447 | 447 | * Returns the resetDelay until the sound changes revert back to the users
|
448 | 448 | * settings.
|
449 |
| - * |
| 449 | + * |
450 | 450 | * @return resetDelay
|
451 | 451 | */
|
452 | 452 | public Integer getResetDelay() {
|
|
0 commit comments