postman icon indicating copy to clipboard operation
postman copied to clipboard

A library that implements Parcelable for you.

Results 3 postman issues
Sort by recently updated
recently updated
newest added

I have two classes: ``` @Parceled public class A implements Parcelable { public static final Creator CREATOR = Postman.getCreator(A.class); State mState; @Override public int describeContents() { return 0; } @Override...