version:cube 4.8

fix:修复截图
update:
This commit is contained in:
2022-06-02 18:14:59 +08:00
parent b01f101613
commit 8ac2a6503f
5 changed files with 58 additions and 50 deletions

View File

@@ -42,12 +42,14 @@ public class RemoteService extends Service {
@Override
public List<String> getHideIcon() throws RemoteException {
return JGYUtils.getInstance().getHidePackage();
List<String> hide = JGYUtils.getInstance().getHidePackage();
return hide;
}
@Override
public List<String> getDisableIcon() throws RemoteException {
return JGYUtils.getInstance().getDisablePackage();
List<String> disable = JGYUtils.getInstance().getDisablePackage();
return disable;
}
};