SkillAgentSearch skills...

Libzip

Simple jni binding for kuba--/zip lib to be used on Android.

Install / Use

/learn @Aliucord/Libzip
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

libzip

Simple jni binding for kuba--/zip lib to be used on Android.

Sample usage

        String data = "File content";

        Zip zip = new Zip(getFilesDir() + "/test.zip", 6, 'w');

        zip.openEntry("test.txt");
        byte[] bytes = data.getBytes();
        zip.writeEntry(bytes, bytes.length);
        zip.closeEntry();

        zip.close();

How to use

Use jitpack:

implementation("com.github.Aliucord:libzip:1.0.1")

Related Skills

View on GitHub
GitHub Stars5
CategoryDevelopment
Updated6mo ago
Forks0

Languages

C++

Security Score

77/100

Audited on Sep 17, 2025

No findings