A tool to manage archives that are split into multiple parts e.g. for use of big archives on FAT32.
It does not support compression but a simple encryption method. Can be used to store archives bigger than 4GB on android.
- Java 8+
In order to run the program via command line, you have to download a runnable release from the 'releases' tab.
Then execute the file via command line:
java -jar ArchivePart-cmd.jar --help
Gradle:
Step 1. Add a custom repository to your repositories
repositories {
maven { url 'https://repo.lclpnet.work/repository/internal' }
}
Step 2. Add the dependency
dependencies {
implementation 'work.lclpnet:archivepart:2.1.0'
}
Maven:
Step 1. Add a custom repository to your repositories
<repositories>
<repository>
<id>lclpnetwork</id>
<name>LCLPNetwork Repository</name>
<url>https://repo.lclpnet.work/repository/internal</url>
</repository>
</repositories>
Step 2. Add the dependency
<dependency>
<groupId>work.lclpnet</groupId>
<artifactId>archivepart</artifactId>
<version>2.1.0</version>
</dependency>