From 972ea66072ba607e322ebe6c81ae1015b3cd26aa Mon Sep 17 00:00:00 2001 From: alcidauk Date: Sun, 13 Feb 2022 17:14:07 +0100 Subject: [PATCH 1/2] Update README since dependency current artifact cannot be resolved --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a01460f..02ce83b 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,13 @@ Thus, you are allowed to also use it in closed source applications as long as yo Add this to your build.gradle: ```gradle -repositories { - maven { url 'https://jitpack.io' } -} - +allprojects { repositories { + ... + maven { url 'https://jitpack.io' } } +} + dependencies { - implementation 'com.github.open-keychain.open-keychain:openpgp-api:v5.7.1' + implementation 'com.github.open-keychain:openpgp-api:v10' } ``` From ca5e1fe6970ed7c7ab217eda73f20d63d9965f05 Mon Sep 17 00:00:00 2001 From: alcidauk Date: Sun, 13 Feb 2022 17:21:15 +0100 Subject: [PATCH 2/2] Update README: put last built api version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02ce83b..33262e8 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ allprojects { } dependencies { - implementation 'com.github.open-keychain:openpgp-api:v10' + implementation 'com.github.open-keychain:openpgp-api:v11' } ```