Easily add powerful native features without writing native code
Access your app and the underlying mobile device directly from your website using the GoNative JavaScript Bridge, a powerful API embedded in your app.
//Invoke native “Share” menu
gonative.share.sharePage()
//Keep device screen on without going to sleep
gonative.screen.keepScreenOn()
//Hide the status bar
gonative.screen.fullScreen()
//Set the top status bar
gonative.statusbar.set({'color': '#007aff')
//Select a bottom tab bar item, if enabled
gonative.tabs.select(1)
//Prompt ATT consent on iOS 14.5 and later
gonative.ios.attconsent.request()
//Get user’s contacts from address
gonative.contacts.getAll()
//Start a native Twilio video call
gonative.twilio.video.join()
//Log an event to Google Analytics
gonative.firebaseAnalytics.event.logEvent()