feat: support for apk

This commit is contained in:
relikd
2025-11-28 13:21:58 +01:00
parent cde957b01f
commit 591a75dabc
15 changed files with 480 additions and 15 deletions

View File

@@ -18,6 +18,9 @@ extension PreviewGenerator {
return Entitlements(forBinary: tmpPath + "/" + bundleExecutable)
case .Archive, .Extension:
return Entitlements(forBinary: meta.effectiveUrl("MacOS", bundleExecutable).path)
case .APK:
// not applicable for Android
return Entitlements.withoutBinary()
}
}