diff --git a/crowdin/build.gradle b/crowdin/build.gradle index 0b498205..65c7a151 100755 --- a/crowdin/build.gradle +++ b/crowdin/build.gradle @@ -6,8 +6,8 @@ plugins { apply from: '../jacoco.gradle' ext { - libraryVersionCode = 41 - libraryVersionName = "1.9.1" + libraryVersionCode = 42 + libraryVersionName = "1.9.2" publishedGroupId = 'com.crowdin.platform' libraryName = 'CrowdinAndroidSdk' diff --git a/website/docs/installation.md b/website/docs/installation.md index fc077449..403d707d 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.9.1' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.9.2' } ``` @@ -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.9.1') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.9.2') { exclude group: 'com.google.code.gson', module: 'gson' } ```