Java tutorial
//package com.java2s; //License from project: Apache License import android.annotation.SuppressLint; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothManager; import android.content.Context; import android.os.Build; import android.support.annotation.NonNull; public class Main { /** * Check if Bluetooth LE Peripheral mode supported on the running environment. * * @param context the context * @return true if supported */ @SuppressLint("NewApi") public static boolean isBlePeripheralSupported(@NonNull Context context) { if (Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP) { return false; } final BluetoothAdapter bluetoothAdapter = ((BluetoothManager) context .getSystemService(Context.BLUETOOTH_SERVICE)).getAdapter(); if (bluetoothAdapter == null) { return false; } return bluetoothAdapter.isMultipleAdvertisementSupported(); } }