version:4.7
fix: update:增加远程获取隐藏app列表,禁用app列表
This commit is contained in:
@@ -7,8 +7,11 @@ import android.os.RemoteException;
|
||||
import android.util.Log;
|
||||
|
||||
import com.aoleyun.sn.SystemInfoInterface;
|
||||
import com.aoleyun.sn.utils.JGYUtils;
|
||||
import com.aoleyun.sn.utils.Utils;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class RemoteService extends Service {
|
||||
private String TAG = RemoteService.class.getSimpleName();
|
||||
|
||||
@@ -36,5 +39,17 @@ public class RemoteService extends Service {
|
||||
public String getSerial() throws RemoteException {
|
||||
return Utils.getSerial();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getHideIcon() throws RemoteException {
|
||||
return JGYUtils.getInstance().getHidePackage();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<String> getDisableIcon() throws RemoteException {
|
||||
return JGYUtils.getInstance().getDisablePackage();
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user