FM: add null check for BluetoothAdapter instance

Issue : BluetoothAdapter object is null and it causes FM App termination.
Add null check for BluetoothAdapter instance.

Change-Id: I0c4053b1f0b5bec5ca9f71b8a915670e8922bec5
diff --git a/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java b/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
index 7f44278..a0cae6e 100644
--- a/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
+++ b/fmapp2/src/com/caf/hc_utils/A2dpDeviceStatus.java
@@ -95,8 +95,10 @@
 
     public A2dpDeviceStatus(Context mContext) {
         mAdapter = BluetoothAdapter.getDefaultAdapter();
-        mAdapter.getProfileProxy(mContext, mProfileListener,
-                BluetoothProfile.A2DP);
+        if(mAdapter !=  null) {
+            mAdapter.getProfileProxy(mContext, mProfileListener,
+                    BluetoothProfile.A2DP);
+        }
     }
     private BluetoothProfile.ServiceListener mProfileListener =
         new BluetoothProfile.ServiceListener() {