diff options
author | Sungsoo Lim <sungsoo@google.com> | 2014-08-01 02:08:19 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-07-25 11:19:20 +0000 |
commit | 3776ce3949729e3194d783b6f29d04929341f88e (patch) | |
tree | 25ac5a6bc0a8d4c3afb6e514ad14b6bbf1e30a37 /api | |
parent | fc2f1bde1919896457e9ffdace65fa95de372555 (diff) | |
parent | 67c01a4b6d890212fb4647973a627e25a3a9788b (diff) | |
download | frameworks_base-3776ce3949729e3194d783b6f29d04929341f88e.zip frameworks_base-3776ce3949729e3194d783b6f29d04929341f88e.tar.gz frameworks_base-3776ce3949729e3194d783b6f29d04929341f88e.tar.bz2 |
Merge "Revert "Service data and manufacturer data can be repeated fields."" into lmp-dev
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/api/current.txt b/api/current.txt index dae70ef..74fdd31 100644 --- a/api/current.txt +++ b/api/current.txt @@ -6580,20 +6580,22 @@ package android.bluetooth.le { method public int describeContents(); method public boolean getIncludeDeviceName(); method public boolean getIncludeTxPowerLevel(); - method public android.util.SparseArray<byte[]> getManufacturerSpecificData(); - method public java.util.Map<android.os.ParcelUuid, byte[]> getServiceData(); + method public int getManufacturerId(); + method public byte[] getManufacturerSpecificData(); + method public byte[] getServiceData(); + method public android.os.ParcelUuid getServiceDataUuid(); method public java.util.List<android.os.ParcelUuid> getServiceUuids(); method public void writeToParcel(android.os.Parcel, int); } public static final class AdvertiseData.Builder { ctor public AdvertiseData.Builder(); - method public android.bluetooth.le.AdvertiseData.Builder addManufacturerData(int, byte[]); - method public android.bluetooth.le.AdvertiseData.Builder addServiceData(android.os.ParcelUuid, byte[]); method public android.bluetooth.le.AdvertiseData.Builder addServiceUuid(android.os.ParcelUuid); method public android.bluetooth.le.AdvertiseData build(); method public android.bluetooth.le.AdvertiseData.Builder setIncludeDeviceName(boolean); method public android.bluetooth.le.AdvertiseData.Builder setIncludeTxPowerLevel(boolean); + method public android.bluetooth.le.AdvertiseData.Builder setManufacturerData(int, byte[]); + method public android.bluetooth.le.AdvertiseData.Builder setServiceData(android.os.ParcelUuid, byte[]); } public final class AdvertiseSettings implements android.os.Parcelable { @@ -6654,7 +6656,6 @@ package android.bluetooth.le { method public int getManufacturerId(); method public byte[] getServiceData(); method public byte[] getServiceDataMask(); - method public android.os.ParcelUuid getServiceDataUuid(); method public android.os.ParcelUuid getServiceUuid(); method public android.os.ParcelUuid getServiceUuidMask(); method public boolean matches(android.bluetooth.le.ScanResult); @@ -6678,10 +6679,10 @@ package android.bluetooth.le { method public int getAdvertiseFlags(); method public byte[] getBytes(); method public java.lang.String getDeviceName(); - method public android.util.SparseArray<byte[]> getManufacturerSpecificData(); - method public byte[] getManufacturerSpecificData(int); - method public java.util.Map<android.os.ParcelUuid, byte[]> getServiceData(); - method public byte[] getServiceData(android.os.ParcelUuid); + method public int getManufacturerId(); + method public byte[] getManufacturerSpecificData(); + method public byte[] getServiceData(); + method public android.os.ParcelUuid getServiceDataUuid(); method public java.util.List<android.os.ParcelUuid> getServiceUuids(); method public int getTxPowerLevel(); } |