diff options
author | Mathew Inwood <mathewi@google.com> | 2018-09-14 12:35:36 +0100 |
---|---|---|
committer | Nathan Harold <nharold@google.com> | 2018-10-22 17:28:24 -0700 |
commit | 484573f039f03c0266d6bff44bb604378a8e1cda (patch) | |
tree | 5861509d4e63b558936511bb0b96c0e890e8cec3 /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 49651ddf8871b9cafbd3f7a447b231202deb3b27 (diff) |
Move some members to the "Q blacklist".
Based on some analysis, these fields/methods are likely false positives.
Set maxTargetSdk=P so that any apps using them are required to migrate off
them in future. See the bug for more details.
Exempted-From-Owner-Approval: Automatic changes to the codebase
affecting only @UnsupportedAppUsage annotations, themselves added
without requiring owners approval earlier.
Bug: 115609023
Test: m
Merged-In: I719b5c94e5b1f4fa562dd5d655953422958ad37e
Change-Id: I719b5c94e5b1f4fa562dd5d655953422958ad37e
(cherry picked from commit 7e50b2e0ee2efa6ca61a9f0116ccc0839f40e4f8)
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index 9777b5cc6c..3c3a01b191 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -21,6 +21,7 @@ import android.Manifest; import android.annotation.RequiresPermission; import android.annotation.SystemApi; import android.annotation.UnsupportedAppUsage; +import android.os.Build; import java.util.List; @@ -86,7 +87,7 @@ public interface BluetoothProfile { * * @hide */ - @UnsupportedAppUsage + @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023) int PAN = 5; /** |