Releases: hyperdevs-team/poeditor-android-gradle-plugin
Releases · hyperdevs-team/poeditor-android-gradle-plugin
3.3.1
3.3.0
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!
3.2.0
3.1.1
3.1.0
3.0.1
3.0.0
2.4.2
2.4.1
2.4.0
Added
- Add
filters
parameter topoEditorConfig
block to specify the POEditor filters to use for all languages. Thanks to @nokite for the contribution!
Groovy
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
filters = ["translated", "not_fuzzy"]
}
Kotlin
poEditor {
apiToken = "your_api_token"
projectId = 12345
defaultLang = "en"
filters = listOf("translated", "not_fuzzy")
}