diff --git a/crowdin/build.gradle b/crowdin/build.gradle index dd7a254..7c61303 100755 --- a/crowdin/build.gradle +++ b/crowdin/build.gradle @@ -6,8 +6,8 @@ plugins { apply from: '../jacoco.gradle' ext { - libraryVersionCode = 53 - libraryVersionName = "1.16.0" + libraryVersionCode = 54 + libraryVersionName = "1.17.0" publishedGroupId = 'com.crowdin.platform' libraryName = 'CrowdinAndroidSdk' diff --git a/website/docs/guides/programmatic-strings.md b/website/docs/guides/programmatic-strings.md index 28e3f8a..1435cb0 100644 --- a/website/docs/guides/programmatic-strings.md +++ b/website/docs/guides/programmatic-strings.md @@ -4,7 +4,7 @@ In some cases, you may need to programmatically get or set translations for spec Android resource system. The Crowdin SDK provides methods to directly access and modify translation strings. :::info Version Requirement -Available starting from Crowdin SDK version 1.16.0. +Available starting from Crowdin SDK version 1.17.0. ::: ## Getting a String diff --git a/website/docs/guides/screenshots-automation.md b/website/docs/guides/screenshots-automation.md index 771f520..580d200 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.16.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.17.0' ``` 2. **Initialize the SDK:** diff --git a/website/docs/installation.md b/website/docs/installation.md index 234786c..6c6caaf 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.16.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.17.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.16.0') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.17.0') { exclude group: 'com.google.code.gson', module: 'gson' } ```