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

Commit 385afc99 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Add NetworkCapabilities#getSSID to SystemApi"

parents b9e3e9e3 aa4c5116
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4501,6 +4501,7 @@ package android.net {
  public final class NetworkCapabilities implements android.os.Parcelable {
    method public boolean deduceRestrictedCapability();
    method @Nullable public String getSSID();
    method @NonNull public int[] getTransportTypes();
    method public boolean satisfiedByNetworkCapabilities(@Nullable android.net.NetworkCapabilities);
    method @NonNull public android.net.NetworkCapabilities setSSID(@Nullable String);
+1 −0
Original line number Diff line number Diff line
@@ -1283,6 +1283,7 @@ public final class NetworkCapabilities implements Parcelable {
     * Gets the SSID of this network, or null if none or unknown.
     * @hide
     */
    @SystemApi
    public @Nullable String getSSID() {
        return mSSID;
    }