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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 -dontwarn android.app.Notification | 136 -dontwarn android.app.Notification |
137 | 137 |
138 # IntentUtils uses reflection to access a method that is hidden until API level
18. | 138 # IntentUtils uses reflection to access a method that is hidden until API level
18. |
139 -dontnote org.chromium.chrome.browser.util.IntentUtils | 139 -dontnote org.chromium.chrome.browser.util.IntentUtils |
140 | 140 |
141 # Needed to compile ChromeTest.apk | 141 # Needed to compile ChromeTest.apk |
142 -keep class android.support.customtabs.ICustomTabsCallback** { | 142 -keep class android.support.customtabs.ICustomTabsCallback** { |
143 *; | 143 *; |
144 } | 144 } |
145 | 145 |
| 146 # Needed to run ChromeTest.apk |
| 147 -keepnames class com.google.android.gms.common.GoogleApiAvailability { |
| 148 *; |
| 149 } |
| 150 |
146 #-keep public class android.net.http.SslCertificate | 151 #-keep public class android.net.http.SslCertificate |
147 #-keep public class android.webkit.WebVie | 152 #-keep public class android.webkit.WebVie |
148 | 153 |
149 #-dontwarn android.webkit.WebView | 154 #-dontwarn android.webkit.WebView |
150 -dontwarn android.net.http.SslCertificate | 155 -dontwarn android.net.http.SslCertificate |
OLD | NEW |