Kindly Android SDK
the kindly chat sdk for android allows you to integrate a fully featured customer support chat into your android application the sdk provides a native jetpack compose chat interface with real time messaging, push notifications, custom theming, and more !!! tip "agent assisted setup" point your ai coding assistant at the skill file below and it will install, initialize, and wire up kindly for you automatically prompt to copy ```text use curl to download, read and follow https //kindly ai github io/sdk chat android sources/skill md ``` requirements requirement minimum version android minsdk api 21 (android 5 0) compilesdk 35 kotlin 2 0 jetpack compose enabled ( buildfeatures { compose = true } ) java 1 8+ (source and target compatibility) !!! note starting with sdk version 1 0 88, the sdk is compiled with kotlin 2 x projects using kotlin 1 x must upgrade to kotlin 2 0 or higher to consume the sdk installation option a maven central (recommended) add the dependency directly â no extra repository needed dependencies { implementation("ai kindly\ sdk 1 0 94") } find the latest version on maven central https //central sonatype com/artifact/ai kindly/sdk option b jitpack add the jitpack repository to your settings gradle // settings gradle kts dependencyresolutionmanagement { repositories { maven(url = "https //jitpack io") } } then add the dependency dependencies { implementation("com github kindly ai\ sdk chat android 1 0 94") } find the latest version on jitpack https //jitpack io/#kindly ai/sdk chat android quick start // initialize in your application class kindlysdk start( application = this, botkey = "your bot key", languagecode = "en", market = "your market" ) // display the chat from any activity/fragment kindlysdk launchchat(context = context)