- 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
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);
|
|
}
|
|
}
|