1.第一次加载本地配置收藏夹,不校验本地app是否已安装

This commit is contained in:
2026-03-04 14:55:17 +08:00
parent 260ff0825b
commit 59783d89e3

View File

@@ -496,7 +496,7 @@ public class AppManager {
List<AppBean> appBeans =new ArrayList<>();
for (int i = 0; i < shortcutArray.length; i++) {
String packageName= shortcutArray[i];
if(PakageInstallUtil.checkAppInstall(mContext,packageName)) {
// if(PakageInstallUtil.checkAppInstall(mContext,packageName)) {
ShortAppBean appBean = new ShortAppBean();
AppBean bean =new AppBean();
appBean.setPackageName(packageName);
@@ -511,7 +511,7 @@ public class AppManager {
bean.setSelect(1);
appBeanList.add(appBean);
appBeans.add(bean);
}
// }
}