feat: 系统功能抽象

This commit is contained in:
2026-05-08 00:26:27 +08:00
parent b0ea6eff0a
commit 4dcb82b9f4
82 changed files with 4758 additions and 1019 deletions

View File

@@ -11,7 +11,6 @@ import android.graphics.Canvas;
import android.graphics.drawable.AdaptiveIconDrawable;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Build;
import android.util.Log;
@@ -44,7 +43,7 @@ public class IconCacheManager {
public static IconCacheManager getInstance() {
if (INSTANCE == null) {
throw new IllegalStateException("You must be init IconCacheManager first");
throw new IllegalStateException("You must first initialize the IconCacheManager");
}
return INSTANCE;
}