Skip to content
Snippets Groups Projects
Commit d7769efa authored by Jared Duke's avatar Jared Duke
Browse files

Ensure inner classes of @SystemApi classes are kept

There are several cases where inner classes of @SystemApi-annotated
classes should be kept, but aren't. Add a conditional rule to ensure
this. This is probably overly conservative, but for now should avoid
issues with optimization.

A follow-up change will refactor this to reuse the rules in
system-api.pro, but that requires a bit of build file surgery first.

Bug: 300514883
Change-Id: Ibd561a9098881db1c7e78346d60f4c91d9c75894
Test: m + check services.jar dex diff
parent ce9e0e75
No related branches found
No related tags found
No related merge requests found
......@@ -14,13 +14,20 @@
}
# APIs referenced by dependent JAR files and modules
-keep @interface android.annotation.SystemApi
# TODO(b/300514883): Pull @SystemApi keep rules from system-api.pro.
-keep interface android.annotation.SystemApi
-keep @android.annotation.SystemApi class * {
public protected *;
}
-keepclasseswithmembers class * {
@android.annotation.SystemApi *;
}
# Also ensure nested classes are kept. This is overly conservative, but handles
# cases where such classes aren't explicitly marked @SystemApi.
-if @android.annotation.SystemApi class *
-keep public class <1>$** {
public protected *;
}
# Derivatives of SystemService and other services created via reflection
-keep,allowoptimization,allowaccessmodification class * extends com.android.server.SystemService {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment