This guide explains how to use the screen API in Kotlin SDK.
Overview
The Kotlin SDK provides a screen API that lets you record whenever your user views their mobile screen, along with any additional relevant information about the screen.
// Screen event with screen name
analytics.screen(screenName="Main Screen")// Screen event with screen name and category
analytics.screen(screenName="Main Screen",category="Main")// Screen event with screen name, category and properties
analytics.screen(screenName="Main Screen",category="Main",properties=buildJsonObject{put("key-1","value")})// Screen event with screen name and properties
analytics.screen(screenName="Main Screen",properties=buildJsonObject{put("key-1","value")})// Screen event with screen name, category, and options
analytics.screen(screenName="Main Screen",category="Main",options=RudderOption(customContext=buildJsonObject{put("key-1","value")},integrations=buildJsonObject{put("Amplitude",true)put("INTERCOM",buildJsonObject{put("field","value")})},externalIds=listOf(ExternalId(type="<id_type>",id="<value>"),),))
The below table describes the screen method signature in detail:
Field
Data type
Description
screenName
String
Name of the screen viewed by the user.
category
String
Screen category.
properties
Properties
Additional properties describing the screen to be sent along with the event.
options
RudderOption
Additional event options.
A sample screen event sent from the Kotlin SDK is shown below:
This site uses cookies to improve your experience while you navigate through the website. Out of
these
cookies, the cookies that are categorized as necessary are stored on your browser as they are as
essential
for the working of basic functionalities of the website. We also use third-party cookies that
help
us
analyze and understand how you use this website. These cookies will be stored in your browser
only
with
your
consent. You also have the option to opt-out of these cookies. But opting out of some of these
cookies
may
have an effect on your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This
category only includes cookies that ensures basic functionalities and security
features of the website. These cookies do not store any personal information.
This site uses cookies to improve your experience. If you want to
learn more about cookies and why we use them, visit our cookie
policy. We'll assume you're ok with this, but you can opt-out if you wish Cookie Settings.