diff --git a/crowdin/build.gradle b/crowdin/build.gradle index 8f88cf67..c26e535b 100755 --- a/crowdin/build.gradle +++ b/crowdin/build.gradle @@ -6,8 +6,8 @@ plugins { apply from: '../jacoco.gradle' ext { - libraryVersionCode = 43 - libraryVersionName = "1.10.0" + libraryVersionCode = 44 + libraryVersionName = "1.10.1" publishedGroupId = 'com.crowdin.platform' libraryName = 'CrowdinAndroidSdk' diff --git a/website/docs/installation.md b/website/docs/installation.md index a5357882..31e9b7f6 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.10.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.10.1' } ``` @@ -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.10.0') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.10.1') { exclude group: 'com.google.code.gson', module: 'gson' } ```