version:2.1.3

bugfixes:
update:样式修改
This commit is contained in:
2025-10-23 09:30:10 +08:00
parent 15a4d87a15
commit 34258d8758
143 changed files with 26 additions and 16 deletions

View File

@@ -42,6 +42,7 @@ public class IconUtils {
// this.add("com.ss.android.ugc.aweme");//抖音
// this.add("com.ss.android.article.news");//头条
// this.add("com.tencent.mm");//微信
this.add("com.jxw.yyhb");
}};
public static List<String> appIconList = new ArrayList<String>() {{
@@ -80,6 +81,7 @@ public class IconUtils {
// this.add("com_android_aweme2");
// this.add("com_android_news2");
// this.add("com_tencent_mm2");
this.add("com_jxw_yyhb");
}};
public static List<String> appIconList2 = new ArrayList<String>() {{

View File

@@ -255,20 +255,23 @@ public class Utils {
if ("U807".equals(BuildConfig.platform) && ApkUtils.isAvailable(context, "com.uiuipad.os")) {
RemoteManager.getInstance().setDefaultDesktop("com.uiuipad.os");
} else {
// RemoteManager.getInstance().setDefaultDesktop(ApkUtils.ANDROID_LAUNCHER3_PACKAGE_NAME);
RemoteManager.getInstance().setDefaultDesktop(ApkUtils.ANDROID_LAUNCHER3_PACKAGE_NAME);
}
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.Q) {
if ("U807".equals(BuildConfig.platform) && ApkUtils.isAvailable(context, "com.uiuipad.os")) {
if (!ApkUtils.openPackage(context, "com.uiuipad.os", "com.uiuipad.os.Launcher")) {
ApkUtils.gotoLauncher(context);
}
} else {
if (!ApkUtils.openPackage(context, ApkUtils.ANDROID_LAUNCHER3_PACKAGE_NAME, ApkUtils.ANDROID_LAUNCHER3_Quickstep_CLASS_NAME)) {
ApkUtils.gotoLauncher(context);
}
}
} else {
if (!ApkUtils.openPackage(context, ApkUtils.ANDROID_LAUNCHER3_PACKAGE_NAME, ApkUtils.ANDROID_LAUNCHER3_CLASS_NAME)) {
ApkUtils.gotoLauncher(context);
}