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

0.0.11

Created 28 September 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.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.andrefigas.rustjni:RustJNI:0.0.11")
  }
}

apply(plugin = "io.github.andrefigas.rustjni")

Using the plugins DSL:

plugins {
  id "io.github.andrefigas.rustjni" version "0.0.11"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.andrefigas.rustjni:RustJNI:0.0.11"
  }
}

apply plugin: "io.github.andrefigas.rustjni"

Learn how to apply plugins to subprojects