Poeditor Android Gradle Plugin Versions Save

Gradle plug-in that enables importing PoEditor localized strings directly to an Android project

4.2.0

4 months ago

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

5 months ago

Fixed

  • Fix default resource file name constant value.

4.1.1

5 months ago

Fixed

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

4.1.0

5 months ago

Changed

  • Allow PoEditor importing task lazy configuration.

4.0.0

6 months ago

Changed

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

3.4.2

8 months ago

Fixed

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

3.4.1

10 months ago

Fixed

  • Fix parsing of texts with more than 9 placeholders.

3.4.0

1 year ago

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

1 year ago

Changed

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

3.3.0

1 year ago

Changed

  • Bump project dependencies
  • Project is now compiled against Java 11

Fixed

  • Fix unexpected plug-in crash when PoEditor responses return no result. Thanks to @MartinakDaniel for the contribution!