Java tutorial
//package com.java2s; //License from project: Open Source License import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothGatt; import android.bluetooth.BluetoothGattCallback; import android.content.Context; public class Main { public static BluetoothGatt connect(BluetoothDevice device, Context context, BluetoothGattCallback callback) { return device.connectGatt(context, false, callback, BluetoothDevice.TRANSPORT_LE); } }