Use the library PICT:Pairwise Independent Combinatorial Tool(created by Microsoft) from Java.
- Download libraris(
libpict.so,libpict.dylib) this URL. - Put download files to
resourcesdirectory.
Add the following code to build.gradle.(Authenticating to GitHub Packages)
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/korosuke613/pict4java")
credentials {
username = "Your GitHub username"
password = "Your GitHub access token"
}
}
}
dependencies {
implementation "com.github.korosuke613:pict4java:v2.0.0"
}