2015-07-24 22:56:33 +00:00
|
|
|
-keep,allowshrinking,allowoptimization class com.android.launcher3.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
|
2015-08-20 00:26:21 +00:00
|
|
|
-keep class com.android.launcher3.allapps.AllAppsBackgroundDrawable {
|
|
|
|
public void setAlpha(int);
|
|
|
|
public int getAlpha();
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:35:04 +00:00
|
|
|
-keep class com.android.launcher3.BaseRecyclerViewFastScrollBar {
|
2015-08-19 00:43:02 +00:00
|
|
|
public void setThumbWidth(int);
|
|
|
|
public int getThumbWidth();
|
2015-08-20 19:23:52 +00:00
|
|
|
public void setTrackWidth(int);
|
|
|
|
public int getTrackWidth();
|
2015-06-16 20:35:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.launcher3.BaseRecyclerViewFastScrollPopup {
|
|
|
|
public void setAlpha(float);
|
|
|
|
public float getAlpha();
|
|
|
|
}
|
|
|
|
|
|
|
|
-keep class com.android.launcher3.ButtonDropTarget {
|
|
|
|
public int getTextColor();
|
|
|
|
}
|
|
|
|
|
2013-06-06 02:57:57 +00:00
|
|
|
-keep class com.android.launcher3.CellLayout {
|
2010-09-03 21:15:02 +00:00
|
|
|
public float getBackgroundAlpha();
|
|
|
|
public void setBackgroundAlpha(float);
|
2010-09-29 17:10:05 +00:00
|
|
|
}
|
|
|
|
|
2015-06-16 20:35:04 +00:00
|
|
|
-keep class com.android.launcher3.CellLayout$LayoutParams {
|
2011-03-01 20:36:37 +00:00
|
|
|
public void setWidth(int);
|
|
|
|
public int getWidth();
|
|
|
|
public void setHeight(int);
|
|
|
|
public int getHeight();
|
|
|
|
public void setX(int);
|
|
|
|
public int getX();
|
|
|
|
public void setY(int);
|
|
|
|
public int getY();
|
|
|
|
}
|
|
|
|
|
2015-08-20 00:55:02 +00:00
|
|
|
-keep class com.android.launcher3.dragndrop.DragLayer$LayoutParams {
|
2011-04-21 23:19:16 +00:00
|
|
|
public void setWidth(int);
|
|
|
|
public int getWidth();
|
|
|
|
public void setHeight(int);
|
|
|
|
public int getHeight();
|
|
|
|
public void setX(int);
|
|
|
|
public int getX();
|
|
|
|
public void setY(int);
|
|
|
|
public int getY();
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:35:04 +00:00
|
|
|
-keep class com.android.launcher3.FastBitmapDrawable {
|
2015-08-21 18:16:27 +00:00
|
|
|
public void setDesaturation(float);
|
|
|
|
public float getDesaturation();
|
|
|
|
public void setBrightness(float);
|
|
|
|
public float getBrightness();
|
2010-11-19 18:22:19 +00:00
|
|
|
}
|
2013-06-17 18:25:46 +00:00
|
|
|
|
|
|
|
-keep class com.android.launcher3.MemoryDumpActivity {
|
|
|
|
*;
|
|
|
|
}
|
2014-07-09 07:09:28 +00:00
|
|
|
|
|
|
|
-keep class com.android.launcher3.PreloadIconDrawable {
|
|
|
|
public float getAnimationProgress();
|
|
|
|
public void setAnimationProgress(float);
|
|
|
|
}
|
2014-11-11 00:01:44 +00:00
|
|
|
|
2016-07-27 19:48:09 +00:00
|
|
|
-keep class com.android.launcher3.pageindicators.CaretDrawable {
|
|
|
|
public float getCaretProgress();
|
|
|
|
public void setCaretProgress(float);
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:35:04 +00:00
|
|
|
-keep class com.android.launcher3.Workspace {
|
|
|
|
public float getBackgroundAlpha();
|
|
|
|
public void setBackgroundAlpha(float);
|
2015-07-24 22:56:33 +00:00
|
|
|
}
|
2016-01-21 19:50:02 +00:00
|
|
|
|
|
|
|
# Proguard will strip new callbacks in LauncherApps.Callback from
|
|
|
|
# WrappedCallback if compiled against an older SDK. Don't let this happen.
|
|
|
|
-keep class com.android.launcher3.compat.** {
|
|
|
|
*;
|
|
|
|
}
|
|
|
|
|
2016-11-09 20:08:56 +00:00
|
|
|
# Proguard will strip methods required for talkback to properly scroll to
|
|
|
|
# next row when focus is on the last item of last row when using a RecyclerView
|
|
|
|
# Keep optimized and shrunk proguard to prevent issues like this when using
|
|
|
|
# support jar.
|
2016-11-10 02:03:56 +00:00
|
|
|
-keep,allowoptimization,allowshrinking class android.support.** {
|
2016-11-09 20:08:56 +00:00
|
|
|
*;
|
|
|
|
}
|
|
|
|
|