| 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 all runtime visible annotations | 4 # Keep all runtime visible annotations |
| 5 -keepattributes RuntimeVisibleAnnotations | 5 -keepattributes RuntimeVisibleAnnotations |
| 6 | 6 |
| 7 # Keep the annotations. | 7 # Keep the annotations. |
| 8 -keep @interface *** | 8 -keep @interface *** |
| 9 | 9 |
| 10 # A lot of code in org.chromium is used by both the internal Chrome code and by | 10 # A lot of code in org.chromium is used by both the internal Chrome code and by |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 # The support library contains references to newer platform versions. | 68 # The support library contains references to newer platform versions. |
| 69 # Don't warn about those in case this app is linking against an older | 69 # Don't warn about those in case this app is linking against an older |
| 70 # platform version. We know about them, and they are safe. | 70 # platform version. We know about them, and they are safe. |
| 71 -dontwarn android.support.** | 71 -dontwarn android.support.** |
| 72 | 72 |
| 73 -dontwarn javax.annotation.Nullable | 73 -dontwarn javax.annotation.Nullable |
| 74 | 74 |
| 75 # TODO(aurimas): remove this when Google Play Services no longer uses setLatestE
ventInfo call | 75 # TODO(aurimas): remove this when Google Play Services no longer uses setLatestE
ventInfo call |
| 76 # that was deprecated in Android M. It is save to suppress this according to b/1
8510449. | 76 # that was deprecated in Android M. It is save to suppress this according to b/1
8510449. |
| 77 -dontwarn com.google.android.gms.common.GooglePlayServicesUtil | 77 -dontwarn com.google.android.gms.common.GooglePlayServicesUtil |
| OLD | NEW |