Android SDK

The Infoplaza Platform Android SDK lets you integrate weather, geospatial, and mobility data into your Android apps with native Kotlin/Java support.

Installation

Add the dependency to your build.gradle:

dependencies {
    implementation 'nl.infoplaza:android-sdk:1.0.0'
}

Quick Start

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.