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

Commit 2517be5b authored by Andres Morales's avatar Andres Morales Committed by Android (Google) Code Review
Browse files

Merge "Add calls for NFC WSC token creation"

parents b951af64 b2e6bfd0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -128,5 +128,7 @@ interface IWifiManager
    boolean isBatchedScanSupported();

    void pollBatchedScan();

    String getWpsNfcConfigurationToken(int netId);
}
+15 −0
Original line number Diff line number Diff line
@@ -929,6 +929,21 @@ public class WifiManager {
        } catch (RemoteException e) { }
    }

    /**
     * Creates a configuration token describing the network referenced by {@code netId}
     * of MIME type application/vnd.wfa.wsc. Can be used to configure WiFi networks via NFC.
     *
     * @return hex-string encoded configuration token
     * @hide
     */
    public String getWpsNfcConfigurationToken(int netId) {
        try {
            return mService.getWpsNfcConfigurationToken(netId);
        } catch (RemoteException e) {
            return null;
        }
    }

    /**
     * Return dynamic information about the current Wi-Fi connection, if any is active.
     * @return the Wi-Fi information, contained in {@link WifiInfo}.