diff options
| author | Jaikumar Ganesh <jaikumar@google.com> | 2011-04-01 16:33:09 -0700 |
|---|---|---|
| committer | Jaikumar Ganesh <jaikumar@google.com> | 2011-06-24 11:31:43 -0700 |
| commit | bf981ca2e9d1d75ef726fa6d17a0b5450cf17cdf (patch) | |
| tree | bcec9dfff4b0001c7dbe426f140bdb8479ce723d /framework/java/android/bluetooth/BluetoothProfile.java | |
| parent | 7884c2e04f2bd8c26cb3c04888da332a7f97acb5 (diff) | |
Implement APIs for Bluetooth Health profile.
This first patch implements all the APIs.
The APIs wil be made public soon. The data specification
API will be submited in another patchset.
Change-Id: I2462683b7e07380e2c42474b0036b34d03b4bed1
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
| -rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index 22555f02d4..6cd81fde72 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -65,16 +65,22 @@ public interface BluetoothProfile { public static final int A2DP = 2; /** + * Health Profile + * @hide + */ + public static final int HEALTH = 3; + + /** * Input Device Profile * @hide */ - public static final int INPUT_DEVICE = 3; + public static final int INPUT_DEVICE = 4; /** * PAN Profile * @hide */ - public static final int PAN = 4; + public static final int PAN = 5; /** * Default priority for devices that we try to auto-connect to and |
