Skip to content

Commit 876fb35

Browse files
committed
Android 10 updates
- Updates to support Android 10 (device and SDK) - Change to androidx imports - Conditionally skip autoLaunch behavior on Android 10 - Some bug fixes with channel naming and firing notifications. Firing Notifications if autoLaunch: - No longer fires notifications if autoLaunch is true. - In above case, trigger event should schedule an immediate notification - The intent is that it now can be conditional - Still fires notification immediately on Android 10 when app is closed
1 parent 211973d commit 876fb35

11 files changed

+78
-56
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-local-notification",
3-
"version": "0.9.0-beta.3",
3+
"version": "0.9.0-beta.4",
44
"description": "Schedules and queries for local notifications",
55
"cordova": {
66
"id": "cordova-plugin-local-notification",

plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2525
xmlns:android="http://schemas.android.com/apk/res/android"
2626
id="cordova-plugin-local-notification"
27-
version="0.9.0-beta.3">
27+
version="0.9.0-beta.4">
2828

2929
<name>LocalNotification</name>
3030

src/android/ClickReceiver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
package de.appplant.cordova.plugin.localnotification;
2323

2424
import android.os.Bundle;
25-
import android.support.v4.app.RemoteInput;
25+
import androidx.core.app.RemoteInput;
2626

2727
import org.json.JSONException;
2828
import org.json.JSONObject;

src/android/TriggerReceiver.java

+19-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
import static de.appplant.cordova.plugin.localnotification.LocalNotification.isAppRunning;
4343
import static java.util.Calendar.MINUTE;
4444

45+
import static android.os.Build.VERSION_CODES.P;
46+
4547
/**
4648
* The alarm receiver is triggered when a scheduled alarm is fired. This class
4749
* reads the information in the intent and displays this information in the
@@ -60,9 +62,14 @@ public class TriggerReceiver extends AbstractTriggerReceiver {
6062
@Override
6163
public void onTrigger(Notification notification, Bundle bundle) {
6264
boolean isUpdate = bundle.getBoolean(Notification.EXTRA_UPDATE, false);
65+
boolean didAutoLaunch = false;
6366
Context context = notification.getContext();
6467
Options options = notification.getOptions();
6568
Manager manager = Manager.getInstance(context);
69+
70+
// trigger will have more than 1 key if a timed trigger was defined
71+
// (no trigger has "type": "calendar")
72+
boolean immediateFire = options.getTrigger().length() < 2;
6673
int badge = options.getBadgeNumber();
6774

6875
if (badge > 0) {
@@ -73,13 +80,22 @@ public void onTrigger(Notification notification, Bundle bundle) {
7380
wakeUp(context);
7481
}
7582

76-
if (options.isAutoLaunchingApp()) {
83+
if (options.isAutoLaunchingApp() && (SDK_INT <= P)) {
84+
didAutoLaunch = true;
7785
LaunchUtils.launchApp(context);
7886
}
7987

80-
notification.show();
88+
// Show notification only if we did not autoLaunch
89+
// either because autoLaunch is false, or our SDK doesn't support it
90+
if (!didAutoLaunch) {
91+
notification.show();
92+
}
8193

82-
if (!isUpdate && (isAppRunning() || options.isAutoLaunchingApp())) {
94+
// run trigger function anytime the browser is running
95+
// unless run with no trigger
96+
// (which means that it came from trigger function)
97+
if ((isAppRunning() || didAutoLaunch) && !immediateFire) {
98+
// wake up even if we didn't set it to
8399
if (!options.shallWakeUp()) {
84100
wakeUp(context);
85101
}

src/android/notification/Builder.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
import android.graphics.Bitmap;
2828
import android.net.Uri;
2929
import android.os.Bundle;
30-
import android.support.v4.app.NotificationCompat;
31-
import android.support.v4.app.NotificationCompat.MessagingStyle.Message;
32-
import android.support.v4.media.app.NotificationCompat.MediaStyle;
30+
import androidx.core.app.NotificationCompat;
31+
import androidx.core.app.NotificationCompat.MessagingStyle.Message;
32+
import androidx.media.app.NotificationCompat.MediaStyle;
3333
import android.support.v4.media.session.MediaSessionCompat;
3434

3535
import java.util.List;

src/android/notification/Manager.java

+13-13
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import android.media.AudioAttributes;
3131
import android.net.Uri;
3232
import android.service.notification.StatusBarNotification;
33-
import android.support.v4.app.NotificationManagerCompat;
33+
import androidx.core.app.NotificationManagerCompat;
3434

3535
import org.json.JSONException;
3636
import org.json.JSONObject;
@@ -44,9 +44,9 @@
4444
import static android.os.Build.VERSION.SDK_INT;
4545
import static android.os.Build.VERSION_CODES.M;
4646
import static android.os.Build.VERSION_CODES.O;
47-
import static android.support.v4.app.NotificationManagerCompat.IMPORTANCE_DEFAULT;
48-
import static android.support.v4.app.NotificationManagerCompat.IMPORTANCE_HIGH;
49-
import static android.support.v4.app.NotificationManagerCompat.IMPORTANCE_LOW;
47+
import static androidx.core.app.NotificationManagerCompat.IMPORTANCE_DEFAULT;
48+
import static androidx.core.app.NotificationManagerCompat.IMPORTANCE_HIGH;
49+
import static androidx.core.app.NotificationManagerCompat.IMPORTANCE_LOW;
5050
import static de.appplant.cordova.plugin.notification.Notification.PREF_KEY_ID;
5151
import static de.appplant.cordova.plugin.notification.Notification.Type.TRIGGERED;
5252

@@ -101,7 +101,7 @@ public Notification schedule(Request request, Class<?> receiver) {
101101

102102
/**
103103
* Build channel with options
104-
*
104+
*
105105
* @param soundUri Uri for custom sound (empty to use default)
106106
* @param shouldVibrate whether not vibration should occur during the
107107
* notification
@@ -117,23 +117,23 @@ public String buildChannelWithOptions(Uri soundUri, boolean shouldVibrate, boole
117117
int importance;
118118

119119
if (hasSound && shouldVibrate) {
120-
defaultChannelId = Options.CHANNEL_ID_SOUND_VIBRATE;
121-
defaultChannelName = Options.CHANNEL_NAME_SOUND_VIBRATE;
120+
defaultChannelId = Options.SOUND_VIBRATE_CHANNEL_ID;
121+
defaultChannelName = Options.SOUND_VIBRATE_CHANNEL_NAME;
122122
importance = IMPORTANCE_HIGH;
123123
shouldVibrate = true;
124124
} else if (hasSound) {
125-
defaultChannelId = Options.CHANNEL_ID_SOUND;
126-
defaultChannelName = Options.CHANNEL_NAME_SOUND;
125+
defaultChannelId = Options.SOUND_CHANNEL_ID;
126+
defaultChannelName = Options.SOUND_CHANNEL_NAME;
127127
importance = IMPORTANCE_DEFAULT;
128128
shouldVibrate = false;
129129
} else if (shouldVibrate) {
130-
defaultChannelId = Options.CHANNEL_ID_VIBRATE;
131-
defaultChannelName = Options.CHANNEL_NAME_VIBRATE;
130+
defaultChannelId = Options.VIBRATE_CHANNEL_ID;
131+
defaultChannelName = Options.VIBRATE_CHANNEL_NAME;
132132
importance = IMPORTANCE_LOW;
133133
shouldVibrate = true;
134134
} else {
135-
defaultChannelId = Options.CHANNEL_ID_SILENT;
136-
defaultChannelName = Options.CHANNEL_NAME_SILENT;
135+
defaultChannelId = Options.SILENT_CHANNEL_ID;
136+
defaultChannelName = Options.SILENT_CHANNEL_NAME;
137137
importance = IMPORTANCE_LOW;
138138
shouldVibrate = false;
139139
}

src/android/notification/Notification.java

+9-8
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@
3131
import android.media.AudioManager;
3232
import android.net.Uri;
3333
import android.service.notification.StatusBarNotification;
34-
import android.support.v4.app.NotificationCompat;
35-
import android.support.v4.util.ArraySet;
36-
import android.support.v4.util.Pair;
34+
import android.util.Pair;
3735
import android.util.Log;
3836
import android.util.SparseArray;
3937

@@ -48,14 +46,17 @@
4846
import java.util.Timer;
4947
import java.util.TimerTask;
5048

49+
import androidx.collection.ArraySet;
50+
import androidx.core.app.NotificationCompat;
51+
5152
import static android.app.AlarmManager.RTC;
5253
import static android.app.AlarmManager.RTC_WAKEUP;
5354
import static android.app.PendingIntent.FLAG_CANCEL_CURRENT;
5455
import static android.os.Build.VERSION.SDK_INT;
5556
import static android.os.Build.VERSION_CODES.M;
56-
import static android.support.v4.app.NotificationCompat.PRIORITY_HIGH;
57-
import static android.support.v4.app.NotificationManagerCompat.IMPORTANCE_MAX;
58-
import static android.support.v4.app.NotificationManagerCompat.IMPORTANCE_MIN;
57+
import static androidx.core.app.NotificationCompat.PRIORITY_HIGH;
58+
import static androidx.core.app.NotificationCompat.PRIORITY_MAX;
59+
import static androidx.core.app.NotificationCompat.PRIORITY_MIN;
5960

6061
/**
6162
* Wrapper class around OS notification class. Handles basic operations
@@ -232,10 +233,10 @@ void schedule(Request request, Class<?> receiver) {
232233

233234
try {
234235
switch (options.getPrio()) {
235-
case IMPORTANCE_MIN:
236+
case PRIORITY_MIN:
236237
mgr.setExact(RTC, time, pi);
237238
break;
238-
case IMPORTANCE_MAX:
239+
case PRIORITY_MAX:
239240
if (SDK_INT >= M) {
240241
mgr.setExactAndAllowWhileIdle(RTC_WAKEUP, time, pi);
241242
} else {

src/android/notification/Options.java

+19-19
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
import android.graphics.Bitmap;
2828
import android.graphics.Color;
2929
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;
3232
import android.support.v4.media.session.MediaSessionCompat;
3333

3434
import org.json.JSONArray;
@@ -45,13 +45,13 @@
4545

4646
import static android.os.Build.VERSION.SDK_INT;
4747
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;
5555

5656
/**
5757
* Wrapper around the JSON object passed through JS which contains all possible
@@ -60,23 +60,23 @@
6060
*/
6161
public final class Options {
6262
// 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";
6464

6565
// 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";
6868

6969
// 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";
7272

7373
// 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";
7676

7777
// 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";
8080

8181
// Key name for bundled sound extra
8282
static final String EXTRA_SOUND = "NOTIFICATION_SOUND";
@@ -446,7 +446,7 @@ public Integer getVolume() {
446446
/**
447447
* Returns the resetDelay until the sound changes revert back to the users
448448
* settings.
449-
*
449+
*
450450
* @return resetDelay
451451
*/
452452
public Integer getResetDelay() {

src/android/notification/action/Action.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
package de.appplant.cordova.plugin.notification.action;
2323

2424
import android.content.Context;
25-
import android.support.v4.app.RemoteInput;
25+
import androidx.core.app.RemoteInput;
2626

2727
import org.json.JSONArray;
2828
import org.json.JSONObject;
@@ -134,4 +134,4 @@ private String[] getChoices() {
134134
return choices;
135135
}
136136

137-
}
137+
}

src/android/notification/util/AssetProvider.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Licensed to the Apache Software Foundation (ASF) under one
1919

2020
package de.appplant.cordova.plugin.notification.util;
2121

22-
import android.support.v4.content.FileProvider;
22+
import androidx.core.content.FileProvider;
2323

2424
public class AssetProvider extends FileProvider {
2525
// Nothing to do here
26-
}
26+
}

www/local-notification.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ exports.requestPermission = function (callback, scope) {
9292
/**
9393
* Check to see if the user has allowed "Do Not Disturb" permissions for this app.
9494
* This is required to use alarmVolume to take a user out of silent mode.
95-
*
95+
*
9696
* @param {Function} callback The function to be exec as the callback.
97-
* @param {Object} scope callback function's scope
97+
* @param {Object} scope callback function's scope
9898
*/
9999
exports.hasDoNotDisturbPermissions = function (callback, scope) {
100100
this._exec('hasDoNotDisturbPermissions', null, callback, scope);
@@ -104,7 +104,7 @@ exports.hasDoNotDisturbPermissions = function (callback, scope) {
104104
* Request "Do Not Disturb" permissions for this app.
105105
* The only way to do this is to launch the global do not distrub settings for all apps.
106106
* This permission is required to use alarmVolume to take a user out of silent mode.
107-
*
107+
*
108108
* @param {Function} callback The function to be exec as the callback.
109109
* @param {Object} scope callback function's scope.
110110
*/
@@ -136,6 +136,11 @@ exports.isIgnoringBatteryOptimizations = function (callback, scope) {
136136
* @param {Object} scope callback function's scope
137137
*/
138138
exports.requestIgnoreBatteryOptimizations = function (callback, scope) {
139+
if (device.platform === 'iOS') {
140+
console.warn('[Notifications] requestIgnoreBatteryOptimizations not supported on iOS');
141+
callback(true);
142+
}
143+
139144
this._exec('requestIgnoreBatteryOptimizations', null, callback, scope);
140145
}
141146

0 commit comments

Comments
 (0)