Add PackagesByID for android package manager

This commit is contained in:
世界 2026-03-23 18:24:30 +08:00
parent 0e4cdbbc61
commit 0e624a007c
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 14 additions and 6 deletions

View file

@ -8,6 +8,7 @@ type PackageManager interface {
IDByPackage(packageName string) (uint32, bool)
IDBySharedPackage(sharedPackage string) (uint32, bool)
PackageByID(id uint32) (string, bool)
PackagesByID(id uint32) ([]string, bool)
SharedPackageByID(id uint32) (string, bool)
}