Update JingMatrix/LSPosed

This commit is contained in:
JingMatrix 2024-12-01 09:25:56 +01:00
parent 671fe40074
commit bab8bd2d4c
4 changed files with 15 additions and 1 deletions

2
core

@ -1 +1 @@
Subproject commit 5da38f60a2ebfff7c0909f64a2c553d0752721eb Subproject commit 984bb1c8e512a7175f0c1d484620479da2a63007

View File

@ -15,6 +15,10 @@ object ManagerService : ILSPApplicationService.Stub() {
private const val TAG = "ManagerService" private const val TAG = "ManagerService"
override fun isLogMuted(): Boolean {
return false
}
override fun getLegacyModulesList(): List<Module> { override fun getLegacyModulesList(): List<Module> {
val app = lspApp.packageManager.getNameForUid(Binder.getCallingUid()) val app = lspApp.packageManager.getNameForUid(Binder.getCallingUid())
val list = app?.let { val list = app?.let {

View File

@ -57,6 +57,11 @@ public class LocalApplicationService extends ILSPApplicationService.Stub {
} }
} }
@Override
public boolean isLogMuted() throws RemoteException {
return false;
}
@Override @Override
public List<Module> getLegacyModulesList() { public List<Module> getLegacyModulesList() {
return modules; return modules;

View File

@ -83,6 +83,11 @@ public class RemoteApplicationService implements ILSPApplicationService {
} }
} }
@Override
public boolean isLogMuted() throws RemoteException {
return false;
}
@Override @Override
public List<Module> getLegacyModulesList() throws RemoteException { public List<Module> getLegacyModulesList() throws RemoteException {
return service == null ? new ArrayList<>() : service.getLegacyModulesList(); return service == null ? new ArrayList<>() : service.getLegacyModulesList();