io.github.MatrixDev.android-rust
Owner:
Rostyslav Lesovyi
A plugin that helps build Rust JNI libraries with Cargo for use in Android projects.
https://github.com/MatrixDev/GradleAndroidRustPlugin
Sources: https://github.com/MatrixDev/GradleAndroidRustPlugin.git
Version 0.2.1
Created 27 February 2023.
A plugin that helps build Rust JNI libraries with Cargo for use in Android projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.MatrixDev.android-rust") version "0.2.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.MatrixDev.android-rust:io.github.MatrixDev.android-rust.gradle.plugin:0.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.MatrixDev.android-rust") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.MatrixDev.android-rust:io.github.MatrixDev.android-rust.gradle.plugin:0.2.1") } } apply(plugin = "io.github.MatrixDev.android-rust")
- Applying plugins to all subprojects .