Chromium Code Reviews| 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 127 # that was deprecated in Android M. It is save to suppress this according to b/1 8510449. | 127 # that was deprecated in Android M. It is save to suppress this according to b/1 8510449. |
| 128 -dontwarn android.app.Notification | 128 -dontwarn android.app.Notification |
| 129 | 129 |
| 130 # IntentUtils uses reflection to access a method that is hidden until API level 18. | 130 # IntentUtils uses reflection to access a method that is hidden until API level 18. |
| 131 -dontnote org.chromium.chrome.browser.util.IntentUtils | 131 -dontnote org.chromium.chrome.browser.util.IntentUtils |
| 132 | 132 |
| 133 # Needed to compile ChromeTest.apk | 133 # Needed to compile ChromeTest.apk |
| 134 -keep class android.support.customtabs.ICustomTabsCallback** { | 134 -keep class android.support.customtabs.ICustomTabsCallback** { |
| 135 *; | 135 *; |
| 136 } | 136 } |
| 137 | |
| 138 #-keep public class android.net.http.SslCertificate | |
|
newt (away)
2015/09/23 21:52:56
why this change? remove this.
jianli
2015/09/23 23:21:07
Sorry, this is to work around my local build probl
| |
| 139 #-keep public class android.webkit.WebVie | |
| 140 | |
| 141 #-dontwarn android.webkit.WebView | |
| 142 -dontwarn android.net.http.SslCertificate | |
| OLD | NEW |