Adding Quack AI to your Android App
Step 1: Add the Webview to your Layout
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"/>Step 2: Configure your Activity
javaCopy codeWebView myWebView = (WebView) findViewById(R.id.webview);kotlinCopy codeval myWebView: WebView = findViewById(R.id.webview)myWebView.loadUrl("https://m.thequack.ai/sdk/<YOUR_TOKEN>");Step 3: Pass in Metadata
Last updated
Was this helpful?
