We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.apk
1 parent 98af173 commit e458048Copy full SHA for e458048
1 file changed
src/main/java/dev/jbang/jdkdb/util/ArchiveUtils.java
@@ -37,6 +37,8 @@ public static Map<String, String> extractReleaseInfo(Path archiveFile, String fi
37
return extractReleaseFromTarGz(archiveFile);
38
} else if (lowerFilename.endsWith(".tar.xz") || lowerFilename.endsWith(".txz")) {
39
40
+ } else if (lowerFilename.endsWith(".apk")) {
41
+ return extractReleaseFromTarGz(archiveFile);
42
} else if (lowerFilename.endsWith(".pkg")) {
43
// PKG extraction only supported on macOS using pkgutil
44
if (isMacOS()) {
0 commit comments