Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1845027 authored by Hai Shalom's avatar Hai Shalom Committed by Android (Google) Code Review
Browse files

Merge changes from topic "isEasyConnectSupported"

* changes:
  [DPP] Rename isDppSupported to isEasyConnectSupported
  [DPP] Add more documentation about Easy-Connect (DPP)
parents 6b0a9101 50b9e393
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -29929,7 +29929,7 @@ package android.net.wifi {
    method public int getWifiState();
    method public boolean is5GHzBandSupported();
    method public boolean isDeviceToApRttSupported();
    method public boolean isDppSupported();
    method public boolean isEasyConnectSupported();
    method public boolean isEnhancedPowerReportingSupported();
    method public boolean isOweSupported();
    method public boolean isP2pSupported();
+7 −2
Original line number Diff line number Diff line
@@ -4535,9 +4535,14 @@ public class WifiManager {
    }

    /**
     * @return true if this device supports Wi-Fi Device Provisioning Protocol (Easy-connect)
     * Wi-Fi Easy Connect (DPP) introduces standardized mechanisms to simplify the provisioning and
     * configuration of Wi-Fi devices.
     * For more details, visit <a href="https://www.wi-fi.org/">https://www.wi-fi.org/</a> and
     * search for "Easy Connect" or "Device Provisioning Protocol specification".
     *
     * @return true if this device supports Wi-Fi Easy-connect (Device Provisioning Protocol)
     */
    public boolean isDppSupported() {
    public boolean isEasyConnectSupported() {
        return isFeatureSupported(WIFI_FEATURE_DPP);
    }