summaryrefslogtreecommitdiff
path: root/framework/java/android/bluetooth/BluetoothGattService.java
diff options
context:
space:
mode:
authorMathew Inwood <mathewi@google.com>2018-08-01 15:00:35 +0100
committerMathew Inwood <mathewi@google.com>2018-08-02 14:36:57 +0100
commitde2b201ddbf64e0a14475155ce5635d829ea5692 (patch)
tree09f216fa496b8268c336cb944862fedfcd235b82 /framework/java/android/bluetooth/BluetoothGattService.java
parent2b61bf65937b7879d6944f26cc7fba342d7d109c (diff)
Add @UnsupportedAppUsage annotations
For packages: android.bluetooth.le android.bluetooth This is an automatically generated CL. See go/UnsupportedAppUsage for more details. Exempted-From-Owner-Approval: Mechanical changes to the codebase which have been approved by Android API council and announced on android-eng@ Bug: 110868826 Test: m Change-Id: I88a1311e27c5f9a5f9d1035db76034f86f650efc
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothGattService.java')
-rw-r--r--framework/java/android/bluetooth/BluetoothGattService.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/framework/java/android/bluetooth/BluetoothGattService.java b/framework/java/android/bluetooth/BluetoothGattService.java
index ce1dc1ce63..8e740ee387 100644
--- a/framework/java/android/bluetooth/BluetoothGattService.java
+++ b/framework/java/android/bluetooth/BluetoothGattService.java
@@ -15,6 +15,7 @@
*/
package android.bluetooth;
+import android.annotation.UnsupportedAppUsage;
import android.os.Parcel;
import android.os.ParcelUuid;
import android.os.Parcelable;
@@ -48,6 +49,7 @@ public class BluetoothGattService implements Parcelable {
*
* @hide
*/
+ @UnsupportedAppUsage
protected BluetoothDevice mDevice;
/**
@@ -265,6 +267,7 @@ public class BluetoothGattService implements Parcelable {
*
* @hide
*/
+ @UnsupportedAppUsage
public void setInstanceId(int instanceId) {
mInstanceId = instanceId;
}
@@ -382,6 +385,7 @@ public class BluetoothGattService implements Parcelable {
*
* @hide
*/
+ @UnsupportedAppUsage
public void setAdvertisePreferred(boolean advertisePreferred) {
mAdvertisePreferred = advertisePreferred;
}