We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac6d6ed commit 9774271Copy full SHA for 9774271
Analytics/Integrations/Crittercism/SEGCrittercismIntegration.m
@@ -26,7 +26,9 @@ - (id)init {
26
- (void)start
27
{
28
NSString *appId = [self.settings objectForKey:@"appId"];
29
- [Crittercism enableWithAppID:appId];
+ CrittercismConfig* config = [CrittercismConfig defaultConfig];
30
+ [config setMonitorUIWebView:[(NSNumber *)[self.settings objectForKey:@"monitorWebView"] boolValue]];
31
+ [Crittercism enableWithAppID:appId andConfig:config];
32
SEGLog(@"CrittercismIntegration initialized.");
33
}
34
0 commit comments