blob: 1c70253af87cb234aeb55273c862e2908c172dc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Keep all companion classes.
-keep class android.companion.** {
*;
}
# Do not touch Mobly.
-keep class com.google.android.mobly.** {
*;
}
# Keep names for easy debugging.
-dontobfuscate
# Necessary to allow debugging.
-keepattributes *
# By default, proguard leaves all classes in their original package, which
# needlessly repeats com.google.android.apps.etc.
-repackageclasses ""
# Allows proguard to make private and protected methods and fields public as
# part of optimization. This lets proguard inline trivial getter/setter
# methods.
-allowaccessmodification
|