diff options
author | Nate Jiang <qiangjiang@google.com> | 2020-11-10 17:30:14 -0800 |
---|---|---|
committer | Nate Jiang <qiangjiang@google.com> | 2020-11-12 16:40:00 -0800 |
commit | 30b8b6b9406403142cc497513d4415030f62bdd1 (patch) | |
tree | 615f605d4dae3e0b9ae396631375721cbb10d453 /api | |
parent | 5d1ebbbb31fb5e89bcc432f9b359a5f7b9653856 (diff) |
[Suggestion] Add API to help app get user approval status.
Bug: 160648511
Test: atest android.net.wifi
Change-Id: If93db55b1e0bc33dd7b82dad4e297c442b628e44
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 576f3f241a7a..cc2c1b9eb7bb 100644 --- a/api/current.txt +++ b/api/current.txt @@ -31682,6 +31682,7 @@ package android.net.wifi { method public android.net.DhcpInfo getDhcpInfo(); method public int getMaxNumberOfNetworkSuggestionsPerApp(); method @IntRange(from=0) public int getMaxSignalLevel(); + method @RequiresPermission(android.Manifest.permission.ACCESS_WIFI_STATE) public int getNetworkSuggestionUserApprovalStatus(); method @NonNull @RequiresPermission(android.Manifest.permission.ACCESS_WIFI_STATE) public java.util.List<android.net.wifi.WifiNetworkSuggestion> getNetworkSuggestions(); method @Deprecated @RequiresPermission(anyOf={"android.permission.NETWORK_SETTINGS", "android.permission.NETWORK_SETUP_WIZARD"}) public java.util.List<android.net.wifi.hotspot2.PasspointConfiguration> getPasspointConfigurations(); method public java.util.List<android.net.wifi.ScanResult> getScanResults(); @@ -31752,6 +31753,11 @@ package android.net.wifi { field public static final int STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL = 1; // 0x1 field public static final int STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID = 5; // 0x5 field public static final int STATUS_NETWORK_SUGGESTIONS_SUCCESS = 0; // 0x0 + field public static final int STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGE = 4; // 0x4 + field public static final int STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USER = 2; // 0x2 + field public static final int STATUS_SUGGESTION_APPROVAL_PENDING = 1; // 0x1 + field public static final int STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USER = 3; // 0x3 + field public static final int STATUS_SUGGESTION_APPROVAL_UNKNOWN = 0; // 0x0 field public static final int STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATION = 1; // 0x1 field public static final int STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATION = 2; // 0x2 field public static final int STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONING = 3; // 0x3 |