Java tutorial
//package com.java2s; //License from project: Open Source License import android.bluetooth.BluetoothAdapter; import android.support.annotation.Nullable; public class Main { @Nullable public static BluetoothAdapter getBluetoothAdapter() { return BluetoothAdapter.getDefaultAdapter(); } }