15 lines
533 B
Plaintext
15 lines
533 B
Plaintext
# SPDX-FileCopyrightText: 2016, microG Project Team
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
# Keep AutoSafeParcelables
|
|
-keep public class * extends org.microg.safeparcel.AutoSafeParcelable {
|
|
@org.microg.safeparcel.SafeParcelable.Field *;
|
|
@org.microg.safeparcel.SafeParceled *;
|
|
}
|
|
|
|
# Keep asInterface method cause it's accessed from SafeParcel
|
|
-keepattributes InnerClasses
|
|
-keepclassmembers interface * extends android.os.IInterface {
|
|
public static class *;
|
|
}
|
|
-keep public class * extends android.os.Binder { public static *; } |