Michael Bestas | ec05005 | 2024-02-14 20:35:43 +0200 | [diff] [blame] | 1 | # SPDX-FileCopyrightText: 2015 The CyanogenMod Project |
| 2 | # SPDX-FileCopyrightText: 2017-2019 The LineageOS Project |
| 3 | # SPDX-License-Identifier: Apache-2.0 |
| 4 | |
cretin45 | 0328b87 | 2015-01-15 16:04:44 -0800 | [diff] [blame] | 5 | -keep class * extends java.util.ListResourceBundle { |
| 6 | protected Object[][] getContents(); |
cretin45 | 41801b0 | 2015-10-23 15:23:38 -0700 | [diff] [blame] | 7 | } |
| 8 | |
cretin45 | 41801b0 | 2015-10-23 15:23:38 -0700 | [diff] [blame] | 9 | # Needed for Parcelable/SafeParcelable Creators to not get stripped |
| 10 | -keepnames class * implements android.os.Parcelable { |
| 11 | public static final ** CREATOR; |
| 12 | } |
| 13 | |
| 14 | # Needed when building against the Marshmallow SDK |
| 15 | -dontwarn org.apache.http.** |
Bruno Martins | dc49637 | 2019-09-11 15:38:38 +0100 | [diff] [blame] | 16 | -dontwarn androidx.** |