SDK instance
A Smartlook SDK instance
is instantiated during the application process creation and is available during the entire application run.
Smartlook smartlook = Smartlook.Instance;
The Smartlook instance
is used to access all SDK functions and fields.
Project key
Your unique project key is needed for the SDK to upload and process the recordings. You can find your project key in the mobile project settings on the Smartlook Dashboard.
Smartlook.Instance.preferences.ProjectKey = "YOUR PROJECT KEY";
Starting and stopping recordings
Recordings can be started or stopped at any time. Multiple subsequent start()
or stop()
calls will be ignored.
Smartlook.Instance.Start();
Smartlook.Instance.Stop();
When a user closes your app, the user session automatically stops recording. You don't need to use the stop()
call when the user stops using your app.
Recording start and project key
User sessions can be recorded even if you haven't set the project key. Recorded data is saved but not sent. Once you set the project key, the data is sent.
Checking if the SDK is recording
To see if the SDK is recording:
Smartlook.Instance.state.status.IsRecording;
Why isn't the SDK recording?
You can see why your SDK is not recording by calling
status
. For more information on possible reasons the SDK is not recording andstatus
, see Status.
Opening a new session
You can close the current session and start a new session:
Smartlook.Instance.user.session.OpenNew();
Session URL
The URL
of the currently recorded session can be obtained with or without timestamp:
String? sessionUrl = Smartlook.Instance.user.session.Url;
String? sessionUrlWithTimestamp = Smartlook.Instance.user.session.UrlWithTimeStamp;
Nullability and shareability
URL
s are only available when the SDK is able to "communicate" with the Smartlook backend. Otherwise, they arenull
.
URL
s are not publicly sharable and login to the dashboard is mandatory before opening these.
Session Listener
A listener can be registered to listen to the session URL changes.
smartlook.user.session.OnSessionURLChanged((uri) => {
// TODO fill your code
});
When onUrlChanged
gets called both session url
and urlWithTimestamp
are present.
Multiple
Session.Listener
can be registered and will work in parallel.