Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readme #7

Merged
merged 1 commit into from
Sep 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Aries Framework Kotlin supports most of [AIP 1.0](https://github.com/hyperledger

## Requirements & Installation

Aries Framework Kotlin requires Android 7.0+. Is is not yet available on Maven Central.
Aries Framework Kotlin requires Android 7.0+. It is not available on Maven Central yet.

Clone this repo and add a dependency to your app's build.gradle file:
```groovy
Expand All @@ -38,7 +38,22 @@ dependencies {
implementation ('org.hyperledger:indy:1.16.0') {
exclude group: 'net.java.dev.jna', module: 'jna'
}
implementation 'net.java.dev.jna:jna:5.8.0@aar'}
implementation 'net.java.dev.jna:jna:5.8.0@aar'
}
```

You need additional dependencies if you include the framework as an AAR file:
```groovy
dependencies {
implementation files('path_to_aar_file')
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0"
implementation 'org.slf4j:slf4j-api:1.7.32'
implementation 'ch.qos.logback:logback-classic:1.2.6'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:1.7.0'
implementation 'org.jetbrains.kotlinx:kotlinx-datetime:0.4.0'
implementation 'com.squareup.okhttp3:okhttp:4.10.0'
}
```

## Usage
Expand Down