This sample demonstrates how to communicate with a Generic Attribute Profile (GATT) server over Bluetooth Low Energy. This feature is available on Android 4.3 (API level 18) and above platforms. You can test this sample app using any Bluetooth Low Energy-capable devices. If the device supports the Heart Rate Profile, the app will parse and display the heart rate. Change-Id: I69a4955cb9929f837e81ad1c19145ff45bdd27ec
17 lines
376 B
Makefile
17 lines
376 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := samples
|
|
|
|
# Only compile source java files in this apk.
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := BluetoothLeGatt
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|