Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/ads/zzfcx.java
Daniel Elliott f9d20bb3fc 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>
2026-02-18 14:52:23 -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);
}
}
}