1. Install the SDK
implementation("io.tggl:tggl-client:1.0.0")2. Initialize the client
import io.tggl.TgglRemoteClient
import io.tggl.TgglRemoteClientOptions
val client = TgglRemoteClient(TgglRemoteClientOptions.builder()
.apiKey("YOUR_CLIENT_API_KEY")
.initialContext(mapOf("userId" to "abc123"))
.build())3. Evaluate flags
val value = client.get("my-feature", false)
if (value) {
// ...
}
