Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
Docs: Suppress errors in SystemApi Build
Browse files Browse the repository at this point in the history
Bug: 28427390

Change-Id: Ifea85bf7b1fcdd30a3d7f61bd17d0efba6368aa4
  • Loading branch information
gmdimino committed Jun 1, 2016
1 parent d05a7b5 commit 98ad888
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions Android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion core/java/android/content/Intent.java
Original file line number Diff line number Diff line change
Expand Up @@ -1556,7 +1556,7 @@ public static Intent createChooser(Intent target, CharSequence title, IntentSend

/**
* 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
Expand Down
4 changes: 2 additions & 2 deletions location/java/android/location/LocationManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -2008,7 +2008,7 @@ public void removeNmeaListener(OnNmeaMessageListener listener) {
* No-op method to keep backward-compatibility.
* Don't use it. Use {@link #registerGnssMeasurementsCallback} instead.
* @hide
* @deprecated
* @deprecated Not supported anymore.
*/
@Deprecated
@SystemApi
Expand Down Expand Up @@ -2065,7 +2065,7 @@ public void unregisterGnssMeasurementsCallback(GnssMeasurementsEvent.Callback ca
* No-op method to keep backward-compatibility.
* Don't use it. Use {@link #registerGnssNavigationMessageCallback} instead.
* @hide
* @deprecated
* @deprecated Not supported anymore.
*/
@Deprecated
@SystemApi
Expand Down
2 changes: 1 addition & 1 deletion wifi/java/android/net/wifi/RttManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ public static class RttResult {

/**
* 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;
Expand Down
2 changes: 1 addition & 1 deletion wifi/java/android/net/wifi/WifiScanner.java
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public ChannelSpec(int frequency) {
/**
* 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;
Expand Down

0 comments on commit 98ad888

Please sign in to comment.