Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 -keep @**.MainDex class * { | 1 -keep @**.MainDex class * { |
| 2 *; | 2 *; |
| 3 } | 3 } |
| 4 | 4 |
| 5 -keepclasseswithmembers class * { | 5 -keepclasseswithmembers class * { |
| 6 public static ** asInterface(android.os.IBinder); | 6 public static ** asInterface(android.os.IBinder); |
| 7 } | 7 } |
| 8 | 8 |
| 9 # Required when code coverage is enabled. | 9 # Required when code coverage is enabled. |
| 10 -keep class com.vladium.** { | 10 -keep class com.vladium.** { |
| 11 *; | 11 *; |
| 12 } | 12 } |
| 13 | |
| 14 -keep class **.PackageConfig { | |
|
agrieve
2017/04/21 15:43:31
It's always preferable to use @UsedByReflection ra
jbudorick
2017/04/21 16:03:57
No, the annotations from org.chromium.base.annotat
agrieve
2017/04/21 16:48:42
Sounds good. Thanks for the details :)
| |
| 15 public static final boolean IS_MULTIDEX_ENABLED; | |
| 16 } | |
| OLD | NEW |