[android-developers] Re: enabling bluetooth in android

2017-02-21 Thread Kjagdish Gowda
Hi Rajeev, Yes, problem is solved, Solution is declare : private static final int REQUEST_ENABLE_BT = 1; private BluetoothAdapter mBluetoothAdapter; in onCreate() method final BluetoothManager bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE); mBlueto

[android-developers] enabling bluetooth in android

2016-08-28 Thread Kjagdish Gowda
Hi, Iam new to android development I want to enable bluetooth in my app. I followed the android developer tutorial in the link https://developer.android.com/guide/topics/connectivity/bluetooth.html I had used "BluetoothAdapt