Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
chore!: update indy SDK version to 1.16 for android
Browse files Browse the repository at this point in the history
Signed-off-by: Amit <amit@northernblock.io>
  • Loading branch information
nbAmit committed May 7, 2022
1 parent 8b9c352 commit 169d6e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,19 @@ Download Android libindy binaries and copy them into `android/app/src/main/jniLi
1. Create `android/app/src/main/jniLibs` directory in your project
2. Create subdirectories `arm64-v8a`, `armeabi-v7a`, `x86` and `x86_64` inside `android/app/src/main/jniLibs`.
3. Download the required libindy binaries for your release-channel and version
- with `stable` channel and version `1.15.0` base url will be https://repo.sovrin.org/android/libindy/stable/1.15.0/
- with `stable` channel and version `1.16.0` base url will be https://repo.sovrin.org/android/libindy/stable/1.16.0/
- download the binaries for `arm64`, `armv7`, `x86` and `x86_64`, e.g.:
- `libindy_android_arm64_1.15.0.zip`
- `libindy_android_armv7_1.15.0.zip`
- `libindy_android_x86_1.15.0.zip`
- `libindy_android_x86_64_1.15.0.zip`
- `libindy_android_arm64_1.16.0.zip`
- `libindy_android_armv7_1.16.0.zip`
- `libindy_android_x86_1.16.0.zip`
- `libindy_android_x86_64_1.16.0.zip`
4. Extract all downloaded ZIP files and copy `libindy.so` files to corresponding `jniLibs` directory
- `libindy_arm64/lib/libindy.so` to `jniLibs/arm64-v8a/libindy.so`
- `libindy_armv7/lib/libindy.so` to `jniLibs/armeabi-v7a/libindy.so`
- `libindy_x86/lib/libindy.so` to `jniLibs/x86/libindy.so`
- `libindy_x86_64/lib/libindy.so` to `jniLibs/x86_64/libindy.so`
5. Download the required JNA binaries from the [JNA GitHub repo](https://github.com/java-native-access/jna)
- libindy version 1.15.0 works with version 5.5.0 of JNA. In this case the base url is: https://github.com/java-native-access/jna/tree/5.5.0/lib/native
- libindy version 1.16.0 works with version 5.5.0 of JNA. In this case the base url is: https://github.com/java-native-access/jna/tree/5.5.0/lib/native
- download the binaries for `aarch64`, `armv7`, `x86`, `x86-64`, e.g.:
- `android-aarch64.jar`
- `android-armv7.jar`
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ repositories {
dependencies {
//noinspection GradleDynamicVersion
implementation 'com.facebook.react:react-native:+' // From node_modules
implementation 'org.hyperledger:indy:1.15.0'
implementation 'org.hyperledger:indy:1.16.0'
implementation 'com.google.code.gson:gson:2.8.5'
}

Expand Down

0 comments on commit 169d6e5

Please sign in to comment.