Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d4ada79a authored by Colin Cross's avatar Colin Cross Committed by android-build-merger
Browse files

Merge "Understand the support library/androidx @Keep annotations"

am: 3f6483cb

Change-Id: I4997b8d4aa6799eb262453b09c0549a509dcc012
parents ea673330 3f6483cb
Loading
Loading
Loading
Loading
+31 −0
Original line number Diff line number Diff line
@@ -15,4 +15,35 @@
@**.VisibleForTesting *;
}

# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep class androidx.annotation.Keep

-keep @android.support.annotation.Keep class * {*;}
-keep @androidx.annotation.Keep class * {*;}

-keepclasseswithmembers class * {
    @android.support.annotation.Keep <methods>;
}

-keepclasseswithmembers class * {
    @androidx.annotation.Keep <methods>;
}

-keepclasseswithmembers class * {
    @android.support.annotation.Keep <fields>;
}

-keepclasseswithmembers class * {
    @androidx.annotation.Keep <fields>;
}

-keepclasseswithmembers class * {
    @android.support.annotation.Keep <init>(...);
}

-keepclasseswithmembers class * {
    @androidx.annotation.Keep <init>(...);
}

-include proguard_basic_keeps.flags