package androidx.core.app; import android.os.Bundle; import android.os.IBinder; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.ReplaceWith; @Deprecated /* loaded from: classes.dex */ public final class BundleCompat { private BundleCompat() { } @Nullable @ReplaceWith(expression = "bundle.getBinder(key)") @Deprecated public static IBinder getBinder(@NonNull Bundle bundle, @Nullable String str) { return bundle.getBinder(str); } @ReplaceWith(expression = "bundle.putBinder(key, binder)") @Deprecated public static void putBinder(@NonNull Bundle bundle, @Nullable String str, @Nullable IBinder iBinder) { bundle.putBinder(str, iBinder); } }