Manual integration
Smartlook can be manually integrated into various analytic frameworks using our IntegrationListener
.
Listener can be registered like this:
class CustomIntegrationListener implements IntegrationListener {
void onSessionReady(String dashboardSessionUrl) {
print(dashboardSessionUrl);
}
void onVisitorReady(String dashboardVisitorUrl) {
print(dashboardVisitorUrl);
}
}
Smartlook.registerIntegrationListener(CustomIntegrationListener());
Integration samples
Samples adjusted for specific analytic tools can be found in the Integrations documentation: