@@ -63,6 +63,7 @@ public void initialize(ReadableMap configMap, Promise promise) {
63
63
final String accountKey = mapReader .getAccountKey ();
64
64
final String projectName = mapReader .getProjectName ();
65
65
final String serviceName = mapReader .getServiceName ();
66
+ final String sessionRecording = mapReader .getSessionRecording ();
66
67
final String deploymentEnvironment = mapReader .getDeploymentEnvironment ();
67
68
final ReadableMap globalAttributes = mapReader .getGlobalAttributes ();
68
69
@@ -79,7 +80,12 @@ public void initialize(ReadableMap configMap, Promise promise) {
79
80
.setGlobalAttributes (attributesFromMap (globalAttributes ))
80
81
.setDeploymentEnvironment (deploymentEnvironment )
81
82
.disableActivityLifecycleMonitoring ()
82
- .build ((Application ) getReactApplicationContext ().getApplicationContext ().getApplicationContext ());
83
+ .build (Objects .requireNonNull (getReactApplicationContext ().getCurrentActivity ()).getApplication ());
84
+
85
+ if ("true" .equals (sessionRecording )) {
86
+ Middleware middleware = Middleware .getInstance ();
87
+ middleware .startNativeRecording (getCurrentActivity ());
88
+ }
83
89
84
90
middlewareSpanExporter = Middleware .getInstance ().getMiddlewareRum ().getSpanExporter ();
85
91
WritableMap appStartInfo = Arguments .createMap ();
@@ -162,7 +168,9 @@ public void export(ReadableArray spanMaps, Promise promise) {
162
168
163
169
@ ReactMethod
164
170
public void setSessionId (String sessionId ) {
165
- Middleware .getInstance ().setGlobalAttribute (AttributeKey .stringKey ("session.id" ), sessionId );
171
+ Middleware middleware = Middleware .getInstance ();
172
+ middleware .setGlobalAttribute (AttributeKey .stringKey ("session.id" ), sessionId );
173
+ middleware .setNativeSessionId (sessionId );
166
174
this .nativeSessionId = sessionId ;
167
175
}
168
176
0 commit comments