https://github.com/joaoeudes7/countries
Library to query countries and others info's
https://github.com/joaoeudes7/countries
countries countries-api kotlin kotlin-android
Last synced: 3 months ago
JSON representation
Library to query countries and others info's
- Host: GitHub
- URL: https://github.com/joaoeudes7/countries
- Owner: joaoeudes7
- Created: 2023-02-22T17:57:19.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-18T21:53:26.000Z (8 months ago)
- Last Synced: 2024-10-20T08:41:14.575Z (8 months ago)
- Topics: countries, countries-api, kotlin, kotlin-android
- Language: Kotlin
- Homepage:
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Countries Api
### Android Library | Kotlin#### Whats is that?
A sample Android Library to query countries and others info's by https://restcountries.com v3.1#### How use?
Add the repository on gradle of project and implements on module
```groovy
repositories {
maven {
name = "JeDevCountries"
url = uri("https://maven.pkg.github.com/joaoeudes7/Countries")
}
}implementation("com.jedev:countries-api:") // or api (...) to module
```then invoke the client on your code
```kotlin
private val apiCountries = CountriesClient(application)
```Thanks https://restcountries.com
Enjoy it or hate :)