Mobile App
Publishing your bot in the Android/iOS mobile app.
Last updated
Publishing your bot in the Android/iOS mobile app.
Last updated
// Example code to open chatbot-hosted URL as webview
WebView myWebView = (WebView) findViewById(R.id.webview);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("https://chatbot-hosted-webpage-url");