AppDynamics On-Premises
list_alt
.withSessionReplayEnabled(true)
.withBlobServiceURL(configHelper.getSessionReplayUrl())
(Optional) Default configuration: RenderingMode.NATIVE_MODE
.withSessionReplayRenderingMode(RenderingMode.WIREFRAME_MODE)
import com.appdynamics.eumagent.runtime.Instrumentation;
...
@Override public void onCreate(Bundle savedInstanceState) {
Instrumentation.start(AgentConfiguration.builder()
.withAppKey("<EUM_APP_KEY>")
.withContext(getApplicationContext())
// The default SaaS EUM Server and Screenshot Service are in the Americas,
// so you can omit the following settings if you are in the Americas.
.withSessionReplayEnabled(true)
.withBlobServiceURL(configHelper.getSessionReplayUrl())
.build());
...
}
...
...
repositories {
maven {
url = "https://sdk.smartlook.com/android/release"
}
}
...
...
dependencies {
implementation 'com.cisco.android:sr-instrumentation-session-recording-core:1.0.12'
}