mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 10:18:20 +00:00
> Removing obsolete progrard rules > Removing BackgroundAlphaMultiplier from CellLayout, which is always 1 > Removign otiline animation from workspace. This animation never runs, as it is called during startReordeing which always happens when overview mode (workspaceInModalState() is true) Change-Id: I43219e41ea188771bc818988c1bcbd523f28cba6
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
-keep class com.android.launcher3.CellLayout {
|
|
public float getBackgroundAlpha();
|
|
public void setBackgroundAlpha(float);
|
|
}
|
|
|
|
-keep class com.android.launcher3.DragLayer$LayoutParams {
|
|
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();
|
|
}
|
|
|
|
-keep class com.android.launcher3.CellLayout$LayoutParams {
|
|
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();
|
|
}
|
|
|
|
-keep class com.android.launcher3.Workspace {
|
|
public float getBackgroundAlpha();
|
|
public void setBackgroundAlpha(float);
|
|
}
|
|
|
|
-keep class com.android.launcher3.MemoryDumpActivity {
|
|
*;
|
|
}
|
|
|
|
-keep class com.android.launcher3.PreloadIconDrawable {
|
|
public float getAnimationProgress();
|
|
public void setAnimationProgress(float);
|
|
}
|
|
|
|
-keep class com.android.launcher3.FastBitmapDrawable {
|
|
public int getBrightness();
|
|
public void setBrightness(int);
|
|
}
|
|
|
|
-keep class com.android.launcher3.AppsContainerRecyclerView {
|
|
public void setFastScrollerAlpha(float);
|
|
public float getFastScrollerAlpha();
|
|
}
|
|
|
|
-keep class com.android.launcher3.ButtonDropTarget {
|
|
public int getTextColor();
|
|
}
|