Search Gradle plugins

Version 0.3.2 (latest)

0.3.2

Created 11 April 2023.

This plugin helps with building 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.3.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.MatrixDev.android-rust:plugin:0.3.2")
      }
    }
    
    apply(plugin = "io.github.MatrixDev.android-rust")
  • Applying plugins to all subprojects .