Skip to content

Releases: crowdin/mobile-sdk-android

1.10.1

30 Aug 06:56
5cf99e7
Compare
Choose a tag to compare

What's Changed

  • fix: SecurityException in initCrowdinControl on Android API 34 by @MartinStyk in #259

New Contributors

Full Changelog: 1.10.0...1.10.1

1.10.0

28 Jun 09:11
c59a83e
Compare
Choose a tag to compare

What's Changed

Visit the Cache and Synchronous Mode articles for more details.

Full Changelog: 1.9.2...1.10.0

1.9.2

30 Apr 11:17
7584d9f
Compare
Choose a tag to compare

What's Changed

  • fix: remove hashcode/equals methods which caused missing translations by @MykhailoNester in #248

Full Changelog: 1.9.1...1.9.2

1.9.1

05 Apr 08:09
430ec33
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.9.0...1.9.1

1.9.0

18 Mar 09:16
b72ede7
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.8.1...1.9.0

1.8.1

28 Dec 15:35
79a21e9
Compare
Choose a tag to compare

What's Changed

SDK

Documentation

Full Changelog: 1.8.0...1.8.1

1.8.0

13 Sep 07:32
704f86c
Compare
Choose a tag to compare

What's Changed

⚠️ Deprecation warning ⚠️

The organizationName property of AuthConfig is deprecated. This property has been moved to the CrowdinConfig and will be removed from the AuthConfig in the future.

In case you've been using the Real-Time Preview or Screenshots features and you're a Crowdin Enterprise user, please update your Crowdin SDK configuration:

override fun onCreate() {
    super.onCreate()

    Crowdin.init(applicationContext,
        CrowdinConfig.Builder()
            .withDistributionHash(your_distribution_hash)
            .withScreenshotEnabled()
            .withRealTimeUpdates()
            .withAuthConfig(AuthConfig(
                client_id,
                client_secret,
-               organization_name
            ))
+           .withOrganizationName(organization_name)
            .build())
}

It's highly recommended to add the new configuration to your CrowdinConfig if you're a Crowdin Enterprise user and only use the OTA Content Delivery feature:

override fun onCreate() {
    super.onCreate()
        Crowdin.init(applicationContext,
            CrowdinConfig.Builder()
                .withDistributionHash(your_distribution_hash)
+               .withOrganizationName(organization_name)
                .build())
}

This fixes potential bugs related to the translation delivery of some languages.


Full Changelog: 1.7.1...1.8.0

1.7.1

28 Aug 12:03
81d307a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.7.0...1.7.1

1.7.0

12 Aug 09:43
70ed637
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.6.0...1.7.0

1.6.0

09 Aug 06:28
Compare
Choose a tag to compare

What's Changed

Full Changelog: 1.5.9...1.6.0