You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
610 B
26 lines
610 B
4 months ago
|
-verbose
|
||
|
-keep @com.android.internal.annotations.VisibleForTesting class *
|
||
|
-keep public class * extends android.widget.ListView {
|
||
|
public *;
|
||
|
}
|
||
|
-keep class com.android.server.telecom.TelecomSystem {
|
||
|
*;
|
||
|
}
|
||
|
-keep class android.telecom.Log {
|
||
|
*;
|
||
|
}
|
||
|
|
||
|
# Keep classes, annotations and members used by Lifecycle. Remove this once aapt2 is enabled
|
||
|
-keepattributes *Annotation*
|
||
|
|
||
|
-keep class * implements android.arch.lifecycle.LifecycleObserver {
|
||
|
}
|
||
|
|
||
|
-keep class * implements android.arch.lifecycle.GeneratedAdapter {
|
||
|
<init>(...);
|
||
|
}
|
||
|
|
||
|
-keepclassmembers class ** {
|
||
|
@android.arch.lifecycle.OnLifecycleEvent *;
|
||
|
}
|