blob: 979a7febb01e6c702c411dc10bcb07c01c852992 (
plain)
1
2
3
4
5
6
7
8
9
|
# Keep classes that implements RoleBehavior, which are used by reflection.
-keep class * implements com.android.role.controller.model.RoleBehavior {
*;
}
# Keep Flags classes because they may be referenced by reflection in roles.xml
-keep class **.Flags {
*;
}
|