diff --git a/crowdin/build.gradle b/crowdin/build.gradle index 8860b8c..dd7a254 100755 --- a/crowdin/build.gradle +++ b/crowdin/build.gradle @@ -6,8 +6,8 @@ plugins { apply from: '../jacoco.gradle' ext { - libraryVersionCode = 52 - libraryVersionName = "1.15.0" + libraryVersionCode = 53 + libraryVersionName = "1.16.0" publishedGroupId = 'com.crowdin.platform' libraryName = 'CrowdinAndroidSdk' diff --git a/website/docs/guides/screenshots-automation.md b/website/docs/guides/screenshots-automation.md index 682e16d..771f520 100644 --- a/website/docs/guides/screenshots-automation.md +++ b/website/docs/guides/screenshots-automation.md @@ -27,7 +27,7 @@ To use the Crowdin SDK for automation testing, configure it as follows: Add the necessary dependency to your `build.gradle` file: ```groovy title="build.gradle" - implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.15.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.16.0' ``` 2. **Initialize the SDK:** diff --git a/website/docs/installation.md b/website/docs/installation.md index 7721f88..234786c 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.15.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.16.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.15.0') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.16.0') { exclude group: 'com.google.code.gson', module: 'gson' } ```