diff options
| -rw-r--r-- | Android.mk | 3 | ||||
| -rw-r--r-- | core/java/android/content/Intent.java | 2 | ||||
| -rw-r--r-- | location/java/android/location/LocationManager.java | 4 | ||||
| -rw-r--r-- | wifi/java/android/net/wifi/RttManager.java | 2 | ||||
| -rw-r--r-- | wifi/java/android/net/wifi/WifiScanner.java | 2 |
5 files changed, 8 insertions, 5 deletions
diff --git a/Android.mk b/Android.mk index 795878b0bd62..c2d398794fa1 100644 --- a/Android.mk +++ b/Android.mk @@ -1119,6 +1119,9 @@ LOCAL_DROIDDOC_OPTIONS:= \ -showAnnotation android.annotation.SystemApi \ -title "Android SDK - Including system APIs." \ -toroot / \ + -hide 101 \ + -hide 104 \ + -hide 108 \ -hdf android.whichdoc online \ $(sample_groups) \ -hdf android.hasSamples true \ diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 9118f01b498c..ace54ba9ef43 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1556,7 +1556,7 @@ public class Intent implements Parcelable, Cloneable { /** * Used as an int extra field with {@link #ACTION_INSTALL_PACKAGE} and - * {@link} #ACTION_VIEW} to indicate the uid of the package that initiated the install + * {@link #ACTION_VIEW} to indicate the uid of the package that initiated the install * @hide */ @SystemApi diff --git a/location/java/android/location/LocationManager.java b/location/java/android/location/LocationManager.java index b24636001f8e..2b3ed8748a20 100644 --- a/location/java/android/location/LocationManager.java +++ b/location/java/android/location/LocationManager.java @@ -2008,7 +2008,7 @@ public class LocationManager { * No-op method to keep backward-compatibility. * Don't use it. Use {@link #registerGnssMeasurementsCallback} instead. * @hide - * @deprecated + * @deprecated Not supported anymore. */ @Deprecated @SystemApi @@ -2065,7 +2065,7 @@ public class LocationManager { * No-op method to keep backward-compatibility. * Don't use it. Use {@link #registerGnssNavigationMessageCallback} instead. * @hide - * @deprecated + * @deprecated Not supported anymore. */ @Deprecated @SystemApi diff --git a/wifi/java/android/net/wifi/RttManager.java b/wifi/java/android/net/wifi/RttManager.java index a404a90566e3..590ff1b1bfaa 100644 --- a/wifi/java/android/net/wifi/RttManager.java +++ b/wifi/java/android/net/wifi/RttManager.java @@ -691,7 +691,7 @@ public class RttManager { /** * spread (i.e. max - min) distance - * @deprecate Use {@link android.net.wifi.RttManager.RttResult#distanceSpread} API. + * @deprecated Use {@link android.net.wifi.RttManager.RttResult#distanceSpread} API. */ @Deprecated public int distance_spread_cm; diff --git a/wifi/java/android/net/wifi/WifiScanner.java b/wifi/java/android/net/wifi/WifiScanner.java index 2ee1aefc559e..2636c3f3e079 100644 --- a/wifi/java/android/net/wifi/WifiScanner.java +++ b/wifi/java/android/net/wifi/WifiScanner.java @@ -141,7 +141,7 @@ public class WifiScanner { /** * reports {@link ScanListener#onResults} when underlying buffers are full * this is simply the lack of the {@link #REPORT_EVENT_AFTER_EACH_SCAN} flag - * @deprecated + * @deprecated It is not supported anymore. */ @Deprecated public static final int REPORT_EVENT_AFTER_BUFFER_FULL = 0; |