Add README
This commit is contained in:
parent
88374cb46d
commit
8b5098d87a
1 changed files with 31 additions and 0 deletions
31
android/README.md
Normal file
31
android/README.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Uonet+ request signer for android
|
||||
|
||||
[![](https://jitpack.io/v/wulkanowy/uonet-request-signer.svg)](https://jitpack.io/#wulkanowy/uonet-request-signer)
|
||||
|
||||
## Instalation
|
||||
|
||||
```grovy
|
||||
allprojects {
|
||||
repositories {
|
||||
maven { url 'https://jitpack.io' }
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'com.github.wulkanowy:uonet-request-signer:android:master-SNAPSHOT'
|
||||
}
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```kotlin
|
||||
import io.github.wulkanowy.signer.android.signContent
|
||||
|
||||
val signed = signContent(password, certificate, content)
|
||||
```
|
||||
|
||||
## Tests
|
||||
|
||||
```bash
|
||||
$ ./gradlew test
|
||||
```
|
Loading…
Reference in a new issue