We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5af73c5 commit 38f578bCopy full SHA for 38f578b
plugin/build.gradle
@@ -6,6 +6,17 @@ apply plugin: "java-gradle-plugin"
6
apply plugin: "maven-publish"
7
apply plugin: "kotlin"
8
9
+gradlePlugin {
10
+ plugins {
11
+ simplePlugin {
12
+ id = 'org.mozilla.rust-android-gradle'
13
+ implementationClass = 'com.nishtahir.RustAndroidPlugin'
14
+ displayName = 'Plugin for building Rust with Cargo in Android projects'
15
+ description = 'A plugin that helps build Rust JNI libraries with Cargo for use in Android projects.'
16
+ }
17
18
+}
19
+
20
group 'org.mozilla.rust-android-gradle'
21
version "$plugin_version"
22
0 commit comments