We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff70cf8 commit 54d4b87Copy full SHA for 54d4b87
README.md
@@ -2,6 +2,9 @@
2
3
This plugin helps with building Rust JNI libraries with Cargo for use in Android projects.
4
5
+Link to the plugin on the gradle repository:
6
+https://plugins.gradle.org/plugin/io.github.MatrixDev.android-rust
7
+
8
# Usage
9
10
Add dependencies to the root `build.gradle.kts` file
@@ -13,7 +16,7 @@ buildscript {
13
16
}
14
17
15
18
dependencies {
- classpath("dev.matrix.android-rust:0.3.1")
19
+ classpath("io.github.MatrixDev.android-rust:plugin:0.3.1")
20
21
22
```
@@ -22,7 +25,7 @@ Add plugin to the module's `build.gradle.kts` file
25
23
26
```kotlin
24
27
plugins {
- id("dev.matrix.android-rust")
28
+ id("io.github.MatrixDev.android-rust")
29
30
31
0 commit comments