package com.example.android.bluetoothadvertisements; import android.os.ParcelUuid; /** * Constants for use in the Bluetooth Advertisements sample */ public class Constants { /** * UUID identified with this app - set as Service UUID for BLE Advertisements. * * Bluetooth requires a certain format for UUIDs associated with Services. * The official specification can be found here: * {@link https://www.bluetooth.org/en-us/specification/assigned-numbers/service-discovery} */ public static final ParcelUuid Service_UUID = ParcelUuid .fromString("0000b81d-0000-1000-8000-00805f9b34fb"); public static final int REQUEST_ENABLE_BT = 1; }