Merge be1ab4154689cc6f2f0431f9208a1817529083dc on remote branch
Change-Id: Ia2c20ad57b6426d4ff8ec611a70296ec0102d284
diff --git a/fmapp2/src/com/caf/fmradio/FMRadioService.java b/fmapp2/src/com/caf/fmradio/FMRadioService.java
index 6c35b80..0ef3a1b 100644
--- a/fmapp2/src/com/caf/fmradio/FMRadioService.java
+++ b/fmapp2/src/com/caf/fmradio/FMRadioService.java
@@ -119,6 +119,7 @@
private static final String LOGTAG = "FMService";//FMRadio.LOGTAG;
private FmReceiver mReceiver;
+ private final Object mReceiverLock = new Object();
private BroadcastReceiver mHeadsetReceiver = null;
private BroadcastReceiver mSdcardUnmountReceiver = null;
private BroadcastReceiver mMusicCommandListener = null;
@@ -1647,8 +1648,10 @@
Context context = getApplicationContext();
NotificationManager notificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
-
- notificationManager.deleteNotificationChannel(FMRADIO_NOTIFICATION_CHANNEL);
+ if((notificationManager != null)
+ && (notificationManager.getNotificationChannel(FMRADIO_NOTIFICATION_CHANNEL) != null)) {
+ notificationManager.deleteNotificationChannel(FMRADIO_NOTIFICATION_CHANNEL);
+ }
}
}
@@ -2396,10 +2399,12 @@
boolean bStatus=false;
// This will disable the FM radio device
- if (mReceiver != null)
- {
- bStatus = mReceiver.disable(this);
- mReceiver = null;
+ synchronized(mReceiverLock) {
+ if (mReceiver != null)
+ {
+ bStatus = mReceiver.disable(this);
+ mReceiver = null;
+ }
}
fmOperationsOff();
stop();
@@ -3037,10 +3042,12 @@
public boolean enableStereo(boolean bEnable)
{
boolean bCommandSent=false;
- if (mReceiver != null)
- {
- Log.d(LOGTAG, "enableStereo: " + bEnable);
- bCommandSent = mReceiver.setStereoMode(bEnable);
+ synchronized(mReceiverLock) {
+ if (mReceiver != null)
+ {
+ Log.d(LOGTAG, "enableStereo: " + bEnable);
+ bCommandSent = mReceiver.setStereoMode(bEnable);
+ }
}
return bCommandSent;
}