version:1.7.1

fix:
update:更换图标,添加应用页面
This commit is contained in:
2024-01-06 16:07:30 +08:00
parent 4673381d36
commit a232b6919d
85 changed files with 7470 additions and 525 deletions

View File

@@ -247,8 +247,8 @@ public class AppManager {
}
});
ArrayList<DesktopIcon> desktopIcons = new ArrayList<>();
for (ResolveInfo applicationInfo : resolveInfos) {
desktopIcons.add(DesktopIcon.creatDesktopIcon(mContext, applicationInfo));
for (ResolveInfo resolveInfo : resolveInfos) {
desktopIcons.add(DesktopIcon.creatDesktopIcon(mContext, resolveInfo));
}
return desktopIcons;
}

View File

@@ -141,6 +141,7 @@ public class RemoteManager {
Log.e(TAG, "aliyunPushInit: empty");
return;
}
PushServiceFactory.init(mContext);
CloudPushService pushService = PushServiceFactory.getCloudPushService();
pushService.register(mContext, new CommonCallback() {
@Override