Files
rr3-apk/decompiled-community/sources/androidx/core/app/BundleCompat.java
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

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