android.net.ConnectivityManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-io Show documentation
Show all versions of core-io Show documentation
The official Couchbase JVM Core IO Library
// SPDX-License-Identifier: BSD-3-Clause
package android.net;
public class ConnectivityManager {
public Network getActiveNetwork() {
throw new UnsupportedOperationException();
}
public LinkProperties getLinkProperties(Network network) {
throw new UnsupportedOperationException();
}
}