搜索Gradle插件

版本 0.3.4 (最新版)

0.3.4

创建于 2021年2月16日。

一个通过Cargo NDK在Android项目中使用Rust JNI库的帮助构建的插件。

使用 插件DSL

plugins {
  id("com.github.willir.rust.cargo-ndk-android") version "0.3.4"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.willir.rust:plugin:0.3.4")
  }
}

apply(plugin = "com.github.willir.rust.cargo-ndk-android")

使用 插件DSL

plugins {
  id "com.github.willir.rust.cargo-ndk-android" version "0.3.4"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.willir.rust:plugin:0.3.4"
  }
}

apply plugin: "com.github.willir.rust.cargo-ndk-android"

学习如何将插件应用于子项目