/ play-services-basement / consumer-rules.pro
consumer-rules.pro
1 # SPDX-FileCopyrightText: 2023 microG Project Team 2 # SPDX-License-Identifier: CC0-1.0 3 4 # Keep AutoSafeParcelables 5 -keep public class * extends org.microg.safeparcel.AutoSafeParcelable { 6 @com.google.android.gms.common.internal.safeparcel.SafeParcelable$Field *; 7 @org.microg.safeparcel.SafeParceled *; 8 } 9 10 # Keep asInterface method cause it's accessed from SafeParcel 11 -keepattributes InnerClasses 12 -keep public class * extends android.os.IInterface { 13 public static * asInterface(android.os.IBinder); 14 } 15 -keep public class * extends android.os.Binder { public static *; } 16 17 # Keep name of SafeParcelables and their creators 18 -keepnames public class * implements com.google.android.gms.common.internal.safeparcel.SafeParcelable 19 -keepnames public class * implements com.google.android.gms.common.internal.safeparcel.SafeParcelableCreatorAndWriter