renaming and docs

This commit is contained in:
Nick Fisher
2024-06-16 13:04:58 +08:00
parent 52f4e55b1a
commit 7ec00922fb
8 changed files with 90 additions and 34 deletions

18
docs/android.mdx Normal file
View File

@@ -0,0 +1,18 @@
## Android
In release mode, you must add the following to your `app/build.gradle`:
```
buildTypes {
release {
...
shrinkResources false
minifyEnabled false
}
}
...
dependencies {
....
implementation 'net.java.dev.jna:jna:5.10.0@aar'
}
```