From 704f86c01c30683ef0c1cec23e289d5a7819e349 Mon Sep 17 00:00:00 2001 From: Andrii Bodnar Date: Wed, 13 Sep 2023 10:05:03 +0300 Subject: [PATCH] chore: version 1.8.0 (#219) --- crowdin/build.gradle | 4 ++-- website/docs/installation.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/crowdin/build.gradle b/crowdin/build.gradle index d4e474b5..18b5ca90 100755 --- a/crowdin/build.gradle +++ b/crowdin/build.gradle @@ -6,8 +6,8 @@ plugins { apply from: '../jacoco.gradle' ext { - libraryVersionCode = 37 - libraryVersionName = "1.7.1" + libraryVersionCode = 38 + libraryVersionName = "1.8.0" publishedGroupId = 'com.crowdin.platform' libraryName = 'CrowdinAndroidSdk' diff --git a/website/docs/installation.md b/website/docs/installation.md index 0bcb6c2b..99094636 100644 --- a/website/docs/installation.md +++ b/website/docs/installation.md @@ -15,7 +15,7 @@ Add the dependency: ```groovy dependencies { - implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.7.1' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.8.0' } ``` @@ -27,7 +27,7 @@ For Android projects that already have the [transitive dependency](https://docs. To fix this, exclude `gson` from Crowdin or from your library, but be sure to keep the newer one for backward compatibility. ```groovy -implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.7.1') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.8.0') { exclude group: 'com.google.code.gson', module: 'gson' } ```