diff --git a/crowdin-controls/build.gradle b/crowdin-controls/build.gradle index aebbaff6..15031245 100644 --- a/crowdin-controls/build.gradle +++ b/crowdin-controls/build.gradle @@ -60,7 +60,7 @@ android { } dependencies { - implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.14.1' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.17.0' implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.core:core-ktx:1.10.1' diff --git a/gradle.properties b/gradle.properties index 5c41e0e3..5396a984 100755 --- a/gradle.properties +++ b/gradle.properties @@ -20,8 +20,8 @@ bintray.user="" android.useAndroidX=true # Project version -crowdinVersion=1.17.1 -libraryVersionCode=54 +crowdinVersion=1.18.0 +libraryVersionCode=55 # Publishing metadata publishedGroupId=com.crowdin.platform diff --git a/website/docs/advanced-features/sdk-controls.mdx b/website/docs/advanced-features/sdk-controls.mdx index b288631b..e07477cc 100644 --- a/website/docs/advanced-features/sdk-controls.mdx +++ b/website/docs/advanced-features/sdk-controls.mdx @@ -36,7 +36,7 @@ Add the dependency: ```groovy dependencies { - implementation 'com.github.crowdin.mobile-sdk-android:controls:1.14.1' + implementation 'com.github.crowdin.mobile-sdk-android:controls:1.18.0' } ``` diff --git a/website/docs/guides/programmatic-strings.md b/website/docs/guides/programmatic-strings.md index 1435cb05..abf40931 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.17.0. +Available starting from Crowdin SDK version 1.18.0. ::: ## Getting a String diff --git a/website/docs/guides/screenshots-automation.md b/website/docs/guides/screenshots-automation.md index 580d2000..aa4551fc 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.17.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.18.0' ``` 2. **Initialize the SDK:** diff --git a/website/docs/installation.md b/website/docs/installation.md index 203ba896..871e21e8 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.17.0' + implementation 'com.github.crowdin.mobile-sdk-android:sdk:1.18.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.17.0') { +implementation ('com.github.crowdin.mobile-sdk-android:sdk:1.18.0') { exclude group: 'com.google.code.gson', module: 'gson' } ```