android.os.StrictMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebase-java-sdk Show documentation
Show all versions of firebase-java-sdk Show documentation
The Firebase Java SDK is a pure java port of the Firebase Android SDK to run in clientside java environments such as the desktop.
The newest version!
package android.os;
public class StrictMode {
public static void setThreadPolicy(ThreadPolicy policy) {
}
public static final class ThreadPolicy {
public static final class Builder {
public Builder detectAll() {
return this;
}
public Builder detectNetwork() {
return this;
}
public Builder detectResourceMismatches() {
return this;
}
public Builder detectUnbufferedIo() {
return this;
}
public Builder penaltyLog() {
return this;
}
public ThreadPolicy build() {
return new ThreadPolicy();
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy