diff options
| author | Mathew Inwood <mathewi@google.com> | 2018-09-14 12:35:36 +0100 |
|---|---|---|
| committer | Mathew Inwood <mathewi@google.com> | 2018-09-14 13:18:34 +0100 |
| commit | 8c854f86a477fbbee38092f449333e1425e5cd7e (patch) | |
| tree | 239e7d9ab3df8fb5c663d860cb1ea4636e3afe31 /core/java/android/widget/AutoCompleteTextView.java | |
| parent | d4bd94d644fbb8353ac362165963984e4c37d318 (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
Change-Id: I719b5c94e5b1f4fa562dd5d655953422958ad37e
Diffstat (limited to 'core/java/android/widget/AutoCompleteTextView.java')
| -rw-r--r-- | core/java/android/widget/AutoCompleteTextView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/widget/AutoCompleteTextView.java b/core/java/android/widget/AutoCompleteTextView.java index 71d13a9acdca..cbd624eec7d6 100644 --- a/core/java/android/widget/AutoCompleteTextView.java +++ b/core/java/android/widget/AutoCompleteTextView.java @@ -24,6 +24,7 @@ import android.content.res.TypedArray; import android.database.DataSetObserver; import android.graphics.Rect; import android.graphics.drawable.Drawable; +import android.os.Build; import android.text.Editable; import android.text.Selection; import android.text.TextUtils; @@ -533,7 +534,7 @@ public class AutoCompleteTextView extends EditText implements Filter.FilterListe * * @hide Pending API council approval */ - @UnsupportedAppUsage + @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 115609023) public void setDropDownAnimationStyle(int animationStyle) { mPopup.setAnimationStyle(animationStyle); } |
