- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
28 lines
757 B
Java
28 lines
757 B
Java
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);
|
|
}
|
|
}
|