com.github.willir.rust.cargo-ndk-android
所有者: Anton Rapetov
一个通过Cargo NDK在Android项目中使用Rust JNI库的帮助构建的插件。
https://github.com/willir/cargo-ndk-android-gradle
来源: https://github.com/willir/cargo-ndk-android-gradle.git
使用 插件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"