Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 682 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 682 Bytes

CircleCI

pubg-kotlin

PUBG API wrapper for Kotlin (ref. https://developer.playbattlegrounds.com/?loc=en)

listed on official developers site as one of community SDKs.

usage

Clone this repository and..

const val apiKey: String = "PUT YOUR API KEY HERE"
val pubgKotlin: PubgKotlin = PubgKotlin(apiKey)  // instantiate here with your api key
val status: Result<Status> = pubgKotlin.getStatus()  // and others