### Start Chat Source: https://github.com/verloop/android-sdk/wiki/Migration-from-1.0.8-to-1.1.0-and-above Initiate the Verloop chat interface using the verloop.showChat() method. ```java verloop.showChat() ``` -------------------------------- ### Initialize Verloop SDK with Minimal Configuration Source: https://github.com/verloop/android-sdk/blob/master/Readme.md For anonymous users or when only a client ID is available, initialize the Verloop SDK with a minimal configuration. ```kotlin val config = VerloopConfig.Builder()("YOUR-CLIENT-ID").build() ``` -------------------------------- ### Launch Verloop Chat UI Source: https://context7.com/verloop/android-sdk/llms.txt Initialize Verloop with an Activity Context and VerloopConfig, then call showChat() to launch the chat UI. An anonymous user ID is assigned if none is provided. ```kotlin import io.verloop.sdk.Verloop import io.verloop.sdk.VerloopConfig class MainActivity : AppCompatActivity() { private var verloop: Verloop? = null override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) val config = VerloopConfig.Builder() .clientId("acme") .userId("user-42") .build() verloop = Verloop(this, config) findViewById