ClicktermClient is the entry point for the ClickTerm Android SDK. Call initialize() before using any other SDK methods.
Methods
initialize
ClicktermClient.initialize(String appId);
Parameters:
| Parameter | Type | Required | Description |
|---|
appId | String | Yes | Your App ID from the Integrations page |
Example:
// In your Application class or MainActivity
ClicktermClient.initialize("app_abc123def456");
Calling ClicktermDialog methods before initialize() will result in an error.
Never expose your App Key in client-side code. The App Key is used
only for backend verification calls. The client SDK uses only the App ID.
Store the App Key safely — it won’t display again after creation, but can be
regenerated. Regenerating the key requires updating your backend configuration.