docs(readme): android config

This commit is contained in:
yorickshan 2024-03-12 13:51:01 +08:00
parent 5a2434aa40
commit e5097efb58

View File

@ -32,7 +32,20 @@ project's [`AppDelegate.m`](./example/ios/ShortcutsExample/AppDelegate.m)) file.
### Android
Android doesn't require any additional setup.
Configure the Kotlin version in project's build.gradle file.
```gradle
// eg:
buildscript {
ext {
buildToolsVersion = "31.0.0"
minSdkVersion = 21
compileSdkVersion = 32
targetSdkVersion = 26
kotlinVersion = "1.6.0"
}
}
```
## Usage