OLD | NEW |
1 # Keep line number information, useful for stack traces. | 1 # Keep line number information, useful for stack traces. |
2 -keepattributes SourceFile,LineNumberTable | 2 -keepattributes SourceFile,LineNumberTable |
3 | 3 |
4 # Keep the annotations. | 4 # Keep the annotations. |
5 -keep @interface *** | 5 -keep @interface *** |
6 | 6 |
7 # Disable obfuscation for the following two packages. | 7 # Disable obfuscation for the following two packages. |
8 -keepnames class com.google.android.apps.chrome.**,org.chromium.** { | 8 -keepnames class com.google.android.apps.chrome.**,org.chromium.** { |
9 *; | 9 *; |
10 } | 10 } |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 } | 105 } |
106 | 106 |
107 -keep class android.support.v4.app.FragmentManager** { | 107 -keep class android.support.v4.app.FragmentManager** { |
108 *; | 108 *; |
109 } | 109 } |
110 | 110 |
111 -keep class android.support.v4.app.DialogFragment** { | 111 -keep class android.support.v4.app.DialogFragment** { |
112 *; | 112 *; |
113 } | 113 } |
114 | 114 |
115 -keep class android.support.v4.app.NotificationCompat** { | 115 -keep class android.support.v7.app.NotificationCompat** { |
116 *; | 116 *; |
117 } | 117 } |
118 | 118 |
119 -keep class android.support.v7.app.AlertDialog** { | 119 -keep class android.support.v7.app.AlertDialog** { |
120 *; | 120 *; |
121 } | 121 } |
122 | 122 |
123 -keep class com.google.android.gms.cast.CastMediaControlIntent* { | 123 -keep class com.google.android.gms.cast.CastMediaControlIntent* { |
124 *; | 124 *; |
125 } | 125 } |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 #-keep public class android.webkit.WebVie | 167 #-keep public class android.webkit.WebVie |
168 | 168 |
169 #-dontwarn android.webkit.WebView | 169 #-dontwarn android.webkit.WebView |
170 -dontwarn android.net.http.SslCertificate | 170 -dontwarn android.net.http.SslCertificate |
171 | 171 |
172 # Needed for assertions in BaseChromiumApplication. | 172 # Needed for assertions in BaseChromiumApplication. |
173 # TODO(twellington): Remove these two lines when support for detecting a debug | 173 # TODO(twellington): Remove these two lines when support for detecting a debug |
174 # build lands (https://codereview.chromium.org/1597273005/). | 174 # build lands (https://codereview.chromium.org/1597273005/). |
175 -keep class android.support.v7.app.ToolbarActionBar$ToolbarCallbackWrapper {*;} | 175 -keep class android.support.v7.app.ToolbarActionBar$ToolbarCallbackWrapper {*;} |
176 -keep class android.support.v7.internal.app.ToolbarActionBar$ToolbarCallbackWrap
per {*;} | 176 -keep class android.support.v7.internal.app.ToolbarActionBar$ToolbarCallbackWrap
per {*;} |
OLD | NEW |