Skip to content

Releases: hyperdevs-team/poeditor-android-gradle-plugin

4.2.1

07 Dec 19:28
03a8cdf
Compare
Choose a tag to compare

Fixed

  • Fix issue with toLowerCase behavior for the Turkish language. Thanks to @fevziomurtekin for the contribution!

4.2.0

21 Dec 22:30
7825fda
Compare
Choose a tag to compare

Added

  • Add new untranslatableStringsRegex to define a regex to mark matching PoEditor string keys as untranslatable.
Groovy
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    untranslatableStringsRegex = "(.*)"
}
Kotlin
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    untranslatableStringsRegex = "(.*)"
}

4.1.2

10 Dec 23:50
Compare
Choose a tag to compare

Fixed

  • Fix default resource file name constant value.

4.1.1

10 Dec 23:35
50e2681
Compare
Choose a tag to compare

Fixed

  • Restore conventions for uninitialized properties
  • Fix flavor-specific configs not picking up the default resource path for the brand

4.1.0

26 Nov 22:29
935520c
Compare
Choose a tag to compare

Changed

  • Allow PoEditor importing task lazy configuration.

4.0.0

07 Nov 17:52
Compare
Choose a tag to compare

Changed

  • BREAKING CHANGE: Bump Gradle version to 8 and AGP version to 8.1.2.
  • Update dependencies.

3.4.2

28 Aug 16:25
148be5c
Compare
Choose a tag to compare

Fixed

  • Fix tags not being sent as String JSON array. Thanks to @bogdanzurac for the contribution!

3.4.1

13 Jul 09:38
ed31fba
Compare
Choose a tag to compare

Fixed

  • Fix parsing of texts with more than 9 placeholders.

3.4.0

08 May 20:11
bc74550
Compare
Choose a tag to compare

Added

  • Add new unescapeHtmlTags flag to enable or disable HTML unescaping from strings.
Groovy
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    unescapeHtmlTags = false
}
Kotlin
poEditor {
    apiToken = "your_api_token"
    projectId = 12345
    defaultLang = "en"
    unescapeHtmlTags = false
}

3.3.1

20 Mar 14:42
380cbca
Compare
Choose a tag to compare

Changed

  • Roll back to AGP 7.2.2 and Java 8 until further notice.