Plugin Configuration
The com.simplito.privmx-endpoint-install-native
Gradle plugin automates the process of downloading and installing shared libraries into the module directory.
The downloaded libraries are installed in the src/main/jniLibs
directory of your module.
Options
version
(required)
The version of the native shared libraries to download.
public String version
channel
(optional)
Channel is part of the URL of the libraries. The default channel for libraries is main
(https://builds.simplito.com/java/main).
public String channel
platform
(optional)
A list of platforms (as a pair of operating system and architecture) for which to download the native shared library. The default is the building platform.
public List<PrivmxEndpointPlatform> platform
Usage
- Add
mavenCentral()
repository to yoursettings.gradle
:
pluginManagement {
repositories{
mavenCentral()
}
}
- Add plugin in
build.gradle
:
plugins {
id "com.simplito.privmx-endpoint-install-native" version "$pluginVersion"
}
- Configure plugin in
build.gradle
:
privmxEndpointInstallJni{
version = $nativeLibVersion // Set the version of library to download, it should
// match the privmx-endpoint-java dependency version
// Set the channel of native libraries source
channel = "main"
// Set project supported platforms to download native libraries for them.
platforms = [
SupportedPlatforms.Darwin.arm64.platform,
*SupportedPlatforms.Android.values().platform
]
}