Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crowdin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion website/docs/guides/screenshots-automation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down
4 changes: 2 additions & 2 deletions website/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand All @@ -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'
}
```
Expand Down
Loading