io.github.andrefigas.rustjni
Owner: andre souza
A Gradle plugin that simplifies the creation and compilation of Rust code integrated with Android applications via JNI.
https://github.com/andrefigas/RustJNI
Sources: https://github.com/andrefigas/RustJNI
Version 0.0.20
0.0.20
Created 03 November 2024.
A Gradle plugin that simplifies the creation and compilation of Rust code integrated with Android applications via JNI.
Using the plugins DSL:
plugins {
id("io.github.andrefigas.rustjni") version "0.0.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.andrefigas.rustjni:RustJNI:0.0.20")
}
}
apply(plugin = "io.github.andrefigas.rustjni")
Using the plugins DSL:
plugins {
id "io.github.andrefigas.rustjni" version "0.0.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.andrefigas.rustjni:RustJNI:0.0.20"
}
}
apply plugin: "io.github.andrefigas.rustjni"