The Infoplaza Platform Android SDK lets you integrate weather, geospatial, and mobility data into your Android apps with native Kotlin/Java support.
Add the dependency to your build.gradle:
dependencies {
implementation 'nl.infoplaza:android-sdk:1.0.0'
}
Configure your API key and fetch weather data:
val client = InfoplazaClient(apiKey = "your-api-key")
val forecast = client.weather.getForecast(lat = 52.37, lon = 4.89)
See the API Reference for available endpoints and the Get Started guide for authentication.