Pokekotlin Save

Kotlin (or Java, Scala, etc) client for PokeApi

Project README

Bintray License Build Codecov

PokeKotlin

Maintainer: sargunv

This is a Kotlin (and Java, Scala, etc) client for PokeApi. It's written in Kotlin.

Example

Full documentation coming soon. Meanwhile, look at these usage examples:

Java

public class Example {
    public static void main(String[] args) {
        PokeApi pokeApi = new PokeApiClient();
        PokemonSpecies bulbasaur = pokeApi.getPokemonSpecies(1);
        System.out.println(bulbasaur);
    }
}

Kotlin

fun main(args: Array<String>) {
    val pokeApi = PokeApiClient()
    val bulbasaur = pokeApi.getPokemonSpecies(1)
    println(bulbasaur)
}

Download

PokeKotlin is available from Bintray. The latest version number is: Bintray

repositories {
    mavenCentral()
    maven { url 'https://dl.bintray.com/sargunv/maven' }
}
dependencies {
    implementation 'me.sargunvohra.lib:pokekotlin:<VERSION>'
}
Open Source Agenda is not affiliated with "Pokekotlin" Project. README Source: PokeAPI/pokekotlin
Stars
166
Open Issues
11
Last Commit
2 years ago
Repository
License

Open Source Agenda Badge

Open Source Agenda Rating