proguard.flags 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. -keep class com.android.launcher3.allapps.AllAppsBackgroundDrawable {
  2. public void setAlpha(int);
  3. public int getAlpha();
  4. }
  5. -keep class com.android.launcher3.BaseRecyclerViewFastScrollBar {
  6. public void setThumbWidth(int);
  7. public int getThumbWidth();
  8. public void setTrackWidth(int);
  9. public int getTrackWidth();
  10. }
  11. -keep class com.android.launcher3.BaseRecyclerViewFastScrollPopup {
  12. public void setAlpha(float);
  13. public float getAlpha();
  14. }
  15. -keep class com.android.launcher3.ButtonDropTarget {
  16. public int getTextColor();
  17. }
  18. -keep class com.android.launcher3.CellLayout {
  19. public float getBackgroundAlpha();
  20. public void setBackgroundAlpha(float);
  21. }
  22. -keep class com.android.launcher3.CellLayout$LayoutParams {
  23. public void setWidth(int);
  24. public int getWidth();
  25. public void setHeight(int);
  26. public int getHeight();
  27. public void setX(int);
  28. public int getX();
  29. public void setY(int);
  30. public int getY();
  31. }
  32. -keep class com.android.launcher3.DragLayer$LayoutParams {
  33. public void setWidth(int);
  34. public int getWidth();
  35. public void setHeight(int);
  36. public int getHeight();
  37. public void setX(int);
  38. public int getX();
  39. public void setY(int);
  40. public int getY();
  41. }
  42. -keep class com.android.launcher3.FastBitmapDrawable {
  43. public void setDesaturation(float);
  44. public float getDesaturation();
  45. public void setBrightness(float);
  46. public float getBrightness();
  47. }
  48. -keep class com.android.launcher3.MemoryDumpActivity {
  49. *;
  50. }
  51. -keep class com.android.launcher3.PreloadIconDrawable {
  52. public float getAnimationProgress();
  53. public void setAnimationProgress(float);
  54. }
  55. -keep class com.android.launcher3.Workspace {
  56. public float getBackgroundAlpha();
  57. public void setBackgroundAlpha(float);
  58. }
  59. # Proguard will strip new callbacks in LauncherApps.Callback from
  60. # WrappedCallback if compiled against an older SDK. Don't let this happen.
  61. -keep class com.android.launcher3.compat.** {
  62. *;
  63. }