Getting Started: Mobile App
Embed Amio Chat in your mobile app via a WebView.
There is no mobile SDK — use Web Chat with a few flags for an app-like feel.
Setup (WebView)
- Load the same snippet as in the Web guide.
- Call
AmioChat.init(...)
with these flags for a full-screen, native-like view:startOpened: true
hideCloseButton: true
forceFullScreen: true
Example
AmioChat.init({
startOpened: true, // chat window opens automatically on load
hideCloseButton: true, // removes the close button (user can’t dismiss chat)
forceFullScreen: true, // chat takes over the entire WebView
// Other options
});d

Updated 5 days ago