Files
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

52 lines
1.4 KiB
Java

package com.google.android.gms.internal.ads;
import android.os.Bundle;
import androidx.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes3.dex */
public final class zzfcx {
public static Bundle zza(Bundle bundle, String str) {
Bundle bundle2 = bundle.getBundle(str);
return bundle2 == null ? new Bundle() : bundle2;
}
public static void zzb(Bundle bundle, @Nullable String str, @Nullable Bundle bundle2) {
if (bundle2 != null) {
bundle.putBundle(str, bundle2);
}
}
public static void zzc(Bundle bundle, @Nullable String str, @Nullable String str2) {
if (str2 != null) {
bundle.putString(str, str2);
}
}
public static void zzd(Bundle bundle, @Nullable String str, @Nullable List list) {
if (list != null) {
bundle.putStringArrayList(str, new ArrayList<>(list));
}
}
public static void zze(Bundle bundle, @Nullable String str, int i, boolean z) {
if (z) {
bundle.putInt(str, i);
}
}
public static void zzf(Bundle bundle, @Nullable String str, @Nullable String str2, boolean z) {
if (!z || str2 == null) {
return;
}
bundle.putString(str, str2);
}
public static void zzg(Bundle bundle, @Nullable String str, boolean z, boolean z2) {
if (z2) {
bundle.putBoolean(str, z);
}
}
}