diff options
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/provider/Settings.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/java/android/provider/Settings.java b/core/java/android/provider/Settings.java index a99ae2e4b58b..b2a2c6020639 100644 --- a/core/java/android/provider/Settings.java +++ b/core/java/android/provider/Settings.java @@ -12541,6 +12541,19 @@ public final class Settings { */ public static final String SWAP_ENABLED = "swap_enabled"; + /** + * Blacklist of GNSS satellites. + * + * This is a list of integers separated by commas to represent pairs of (constellation, + * svid). Thus, the number of integers should be even. + * + * E.g.: "3,0,5,24" denotes (constellation=3, svid=0) and (constellation=5, svid=24) are + * blacklisted. Note that svid=0 denotes all svids in the + * constellation are blacklisted. + * + * @hide + */ + public static final String GNSS_SATELLITE_BLACKLIST = "gnss_satellite_blacklist"; } /** |
