Search Gradle plugins

io.github.andrefigas.rustjni

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.18

0.0.18

Created 06 October 2024.

A Gradle plugin that simplifies the creation and compilation of Rust code integrated with Android applications via JNI.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.andrefigas.rustjni") version "0.0.18"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.andrefigas.rustjni:RustJNI:0.0.18")
      }
    }
    
    apply(plugin = "io.github.andrefigas.rustjni")
  • Applying plugins to all subprojects .