void ProcessBluetoothIntent (Context context, Intent intent)
		{
			try {
				if (_bluetoothProcessor == null) {
					_bluetoothProcessor = new BluetoothProcessor ();
				}
				_bluetoothProcessor.ProcessIntent (context, intent);
			} catch (Exception ex) {
				Log.Info ("com.tarabel.bluetoothnotify", "error while passing intent to NotificationProcessor " + ex.ToString());
			}
		}
 void ProcessBluetoothIntent(Context context, Intent intent)
 {
     try {
         if (_bluetoothProcessor == null)
         {
             _bluetoothProcessor = new BluetoothProcessor();
         }
         _bluetoothProcessor.ProcessIntent(context, intent);
     } catch (Exception ex) {
         Log.Info("com.tarabel.bluetoothnotify", "error while passing intent to NotificationProcessor " + ex.ToString());
     }
 }