Example usage for android.bluetooth BluetoothAdapter getBluetoothLeAdvertiser

List of usage examples for android.bluetooth BluetoothAdapter getBluetoothLeAdvertiser

Introduction

In this page you can find the example usage for android.bluetooth BluetoothAdapter getBluetoothLeAdvertiser.

Prototype

public BluetoothLeAdvertiser getBluetoothLeAdvertiser() 

Source Link

Document

Returns a BluetoothLeAdvertiser object for Bluetooth LE Advertising operations.

Usage

From source file:Main.java

public static BluetoothLeAdvertiser getBluetoothLeAdvertiser(BluetoothAdapter adapter) {
    return adapter.getBluetoothLeAdvertiser();
}