https://github.com/freenowtech/phrase-kotlin-client
https://github.com/freenowtech/phrase-kotlin-client
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/freenowtech/phrase-kotlin-client
- Owner: freenowtech
- License: apache-2.0
- Created: 2018-08-17T12:28:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-07-04T14:30:37.000Z (12 months ago)
- Last Synced: 2025-07-04T15:18:16.474Z (12 months ago)
- Language: Kotlin
- Size: 230 KB
- Stars: 3
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# phrase-kotlin-client
Kotlin Client for PhraseApp.
## What is this?
This project contains the task to handle the synchronization via API from [PhraseApp API v2](http://docs.phraseapp.com/api/v2/).
[![codecov][codecov-badge-url]][codecov-project-url]
[](https://github.com/freenowtech/phrase-kotlin-client/actions/workflows/mvn.yml)
[](https://github.com/freenowtech/phrase-kotlin-client/releases/latest)
[codecov-project-url]: https://codecov.io/gh/freenowtech/phrase-kotlin-client
[codecov-badge-url]: https://codecov.io/gh/freenowtech/phrase-kotlin-client/branch/master/graph/badge.svg
Supported Spring Boot versions:
| Version | Spring Boot Version |
|---------|---------------------|
| 2.x | 3.x |
| 1.x | 2.x |
## How to use it
You need configure your sync task
```
val config = PhraseAppSyncTaskConfig(
url = "https://api.phraseapp.com",
authKey = "authKey"
)
val phraseAppSyncTask = PhraseAppSyncTask(config)
phraseAppSyncTask.run()
```