- 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
18 lines
724 B
Java
18 lines
724 B
Java
package android.support.v4.graphics.drawable;
|
|
|
|
import androidx.annotation.RestrictTo;
|
|
import androidx.core.graphics.drawable.IconCompat;
|
|
import androidx.versionedparcelable.VersionedParcel;
|
|
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
/* loaded from: classes.dex */
|
|
public final class IconCompatParcelizer extends androidx.core.graphics.drawable.IconCompatParcelizer {
|
|
public static IconCompat read(VersionedParcel versionedParcel) {
|
|
return androidx.core.graphics.drawable.IconCompatParcelizer.read(versionedParcel);
|
|
}
|
|
|
|
public static void write(IconCompat iconCompat, VersionedParcel versionedParcel) {
|
|
androidx.core.graphics.drawable.IconCompatParcelizer.write(iconCompat, versionedParcel);
|
|
}
|
|
}
|