- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
25 lines
588 B
Java
25 lines
588 B
Java
package androidx.webkit;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.RestrictTo;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class WebResourceErrorCompat {
|
|
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public @interface NetErrorCode {
|
|
}
|
|
|
|
@NonNull
|
|
public abstract CharSequence getDescription();
|
|
|
|
public abstract int getErrorCode();
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public WebResourceErrorCompat() {
|
|
}
|
|
}
|