diff options
author | Steven Liu <steveliu@google.com> | 2019-07-29 15:25:47 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-07-29 15:25:47 +0000 |
commit | ed76e4a297e80a01ace2847a2674eba501ce8d72 (patch) | |
tree | f727cc4df87f34d083c3638f29f472b73329bb85 /service | |
parent | 1c65961bc213d53fbb49566bd71770fdafd22643 (diff) | |
parent | e8708791ffcb4c831e936bf6df3fafd0a3df92ba (diff) |
Merge "notify the factory reset event to installer which have permission of NETWORK_CARRIER_PROVISIONING." into qt-r1-dev
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/WifiServiceImpl.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/service/java/com/android/server/wifi/WifiServiceImpl.java b/service/java/com/android/server/wifi/WifiServiceImpl.java index f04755fd9..b25a84593 100644 --- a/service/java/com/android/server/wifi/WifiServiceImpl.java +++ b/service/java/com/android/server/wifi/WifiServiceImpl.java @@ -2970,9 +2970,20 @@ public class WifiServiceImpl extends BaseWifiService { mWifiNetworkSuggestionsManager.clear(); mWifiInjector.getWifiScoreCard().clear(); }); + notifyFactoryReset(); } } + /** + * Notify the Factory Reset Event to application who may installed wifi configurations. + */ + private void notifyFactoryReset() { + Intent intent = new Intent(WifiManager.WIFI_NETWORK_SETTINGS_RESET_ACTION); + intent.addFlags(Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND); + mContext.sendBroadcastAsUser(intent, UserHandle.ALL, + android.Manifest.permission.NETWORK_CARRIER_PROVISIONING); + } + /* private methods */ static boolean logAndReturnFalse(String s) { Log.d(TAG, s); |