Adam Cohen | ce77f36 | 2015-07-24 15:56:33 -0700 | [diff] [blame] | 1 | -keep,allowshrinking,allowoptimization class com.android.launcher3.** { |
| 2 | *; |
| 3 | } |
| 4 | |
Kenny Guy | 44cba69 | 2016-01-21 19:50:02 +0000 | [diff] [blame] | 5 | # Proguard will strip new callbacks in LauncherApps.Callback from |
| 6 | # WrappedCallback if compiled against an older SDK. Don't let this happen. |
| 7 | -keep class com.android.launcher3.compat.** { |
| 8 | *; |
| 9 | } |
| 10 | |
Sunny Goyal | da1dfa3 | 2017-04-26 22:34:49 -0700 | [diff] [blame] | 11 | -keep class com.android.launcher3.graphics.ShadowDrawable { |
| 12 | public <init>(...); |
| 13 | } |
| 14 | |
Sunny Goyal | 6316d98 | 2017-09-27 12:34:47 -0700 | [diff] [blame] | 15 | # The support library contains references to newer platform versions. |
| 16 | # Don't warn about those in case this app is linking against an older |
| 17 | # platform version. We know about them, and they are safe. |
| 18 | -dontwarn android.support.** |
| 19 | |
Hyunyoung Song | 4d11a2a | 2016-11-09 12:08:56 -0800 | [diff] [blame] | 20 | # Proguard will strip methods required for talkback to properly scroll to |
| 21 | # next row when focus is on the last item of last row when using a RecyclerView |
| 22 | # Keep optimized and shrunk proguard to prevent issues like this when using |
| 23 | # support jar. |
Sunny Goyal | d230307 | 2018-08-14 15:21:45 -0700 | [diff] [blame] | 24 | -keep class androidx.recyclerview.widget.RecyclerView { *; } |
Hyunyoung Song | 4d11a2a | 2016-11-09 12:08:56 -0800 | [diff] [blame] | 25 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 26 | # Preference fragments |
Sunny Goyal | 65ce2cc | 2018-11-07 10:08:24 -0800 | [diff] [blame] | 27 | -keep class ** extends android.app.Fragment { |
Jon Miranda | 54441f5 | 2018-01-24 15:38:25 -0800 | [diff] [blame] | 28 | public <init>(...); |
| 29 | } |
| 30 | |
Sunny Goyal | 7f920b8 | 2018-06-27 15:47:49 -0700 | [diff] [blame] | 31 | ## Prevent obfuscating various overridable objects |
| 32 | -keep class ** implements com.android.launcher3.util.ResourceBasedOverride { |
Sunny Goyal | d0f43ce | 2018-05-30 17:35:24 -0700 | [diff] [blame] | 33 | public <init>(...); |
| 34 | } |
| 35 | |
Sunny Goyal | 6c46a6d | 2016-11-23 02:24:32 +0530 | [diff] [blame] | 36 | -keep interface com.android.launcher3.userevent.nano.LauncherLogProto.** { |
| 37 | *; |
| 38 | } |
Hyunyoung Song | 2d4d1c5 | 2017-05-17 13:18:54 -0700 | [diff] [blame] | 39 | -keep interface com.android.launcher3.model.nano.LauncherDumpProto.** { |
| 40 | *; |
| 41 | } |
Søren Gjesse | 45e89c7 | 2017-12-19 22:17:57 +0100 | [diff] [blame] | 42 | |
Sunny Goyal | 0bd0244 | 2018-05-22 11:20:16 -0700 | [diff] [blame] | 43 | # Discovery bounce animation |
| 44 | -keep class com.android.launcher3.allapps.DiscoveryBounce$VerticalProgressWrapper { |
| 45 | public void setProgress(float); |
| 46 | public float getProgress(); |
| 47 | } |
| 48 | |
Søren Gjesse | 45e89c7 | 2017-12-19 22:17:57 +0100 | [diff] [blame] | 49 | # BUG(70852369): Surpress additional warnings after changing from Proguard to R8 |
| 50 | -dontwarn android.app.** |
| 51 | -dontwarn android.view.** |
| 52 | -dontwarn android.os.** |
Winson Chung | b2f9c1f | 2018-11-15 13:37:57 -0800 | [diff] [blame] | 53 | -dontwarn android.graphics.** |