manager: Reuse the aidi reflection to retrieve the list of applications

This commit is contained in:
ShirkNeko
2025-10-17 01:59:56 +08:00
parent 62635879e0
commit 8db55f56a9
6 changed files with 93 additions and 171 deletions

View File

@@ -0,0 +1,10 @@
// IKsuInterface.aidl
package com.sukisu.zako;
import android.content.pm.PackageInfo;
import java.util.List;
interface IKsuInterface {
int getPackageCount();
List<PackageInfo> getPackages(int start, int maxCount);
}