Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,74 @@
package com.google.android.gms.common.internal;
import android.os.Looper;
import android.util.Log;
import androidx.annotation.NonNull;
import com.google.android.gms.common.annotation.KeepForSdk;
@KeepForSdk
/* loaded from: classes2.dex */
public final class Asserts {
private Asserts() {
throw new AssertionError("Uninstantiable");
}
@KeepForSdk
public static void checkMainThread(@NonNull String str) {
if (Looper.getMainLooper().getThread() == Thread.currentThread()) {
return;
}
Log.e("Asserts", "checkMainThread: current thread " + String.valueOf(Thread.currentThread()) + " IS NOT the main thread " + String.valueOf(Looper.getMainLooper().getThread()) + "!");
throw new IllegalStateException(str);
}
@KeepForSdk
public static void checkNotMainThread(@NonNull String str) {
if (Looper.getMainLooper().getThread() != Thread.currentThread()) {
return;
}
Log.e("Asserts", "checkNotMainThread: current thread " + String.valueOf(Thread.currentThread()) + " IS the main thread " + String.valueOf(Looper.getMainLooper().getThread()) + "!");
throw new IllegalStateException(str);
}
@KeepForSdk
public static void checkNotNull(Object obj) {
if (obj == null) {
throw new IllegalArgumentException("null reference");
}
}
@KeepForSdk
public static void checkNull(Object obj) {
if (obj != null) {
throw new IllegalArgumentException("non-null reference");
}
}
@KeepForSdk
public static void checkState(boolean z) {
if (!z) {
throw new IllegalStateException();
}
}
@KeepForSdk
public static void checkNotNull(Object obj, @NonNull Object obj2) {
if (obj == null) {
throw new IllegalArgumentException(String.valueOf(obj2));
}
}
@KeepForSdk
public static void checkNull(Object obj, @NonNull Object obj2) {
if (obj != null) {
throw new IllegalArgumentException(String.valueOf(obj2));
}
}
@KeepForSdk
public static void checkState(boolean z, @NonNull Object obj) {
if (!z) {
throw new IllegalStateException(String.valueOf(obj));
}
}
}