All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.os.ShadowBinderBridge Maven / Gradle / Ivy

The newest version!
package android.os;

import com.xtremelabs.robolectric.internal.DoNotInstrument;

@DoNotInstrument
public class ShadowBinderBridge {
    private Binder realBinder;

    public ShadowBinderBridge(Binder realBinder) {
        this.realBinder = realBinder;
    }

    public boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
        return realBinder.onTransact(code, data, reply, flags);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy