Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: build/android/main_dex_classes.flags

Issue 2834603006: ABANDONED [android] Create per-package configuration for multidex. (Closed)
Patch Set: tweaks Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698