/* * Copyright 2017 Google * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #import "AppDelegate.h" #import #import #import #import #import @interface FIRInAppMessaging (Testing) + (void)disableAutoBootstrapWithFIRApp; @end @implementation AppDelegate - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { // Override point for customization after application launch. NSLog(@"application started"); [FIRInAppMessaging disableAutoBootstrapWithFIRApp]; [FIRApp configure]; FIRIAMSDKSettings *sdkSetting = [[FIRIAMSDKSettings alloc] init]; sdkSetting.apiServerHost = @"firebaseinappmessaging.googleapis.com"; NSString *serverHostNameFirstComponent = @"pa.ogepscm"; NSString *serverHostNameSecondComponent = @"lygolai.o"; sdkSetting.clearcutServerHost = [NSString fir_interlaceString:serverHostNameFirstComponent withString:serverHostNameSecondComponent]; sdkSetting.apiHttpProtocol = @"https"; sdkSetting.fetchMinIntervalInMinutes = 0.1; // ok to refetch every 6 seconds sdkSetting.loggerMaxCountBeforeReduce = 800; sdkSetting.loggerSizeAfterReduce = 600; sdkSetting.appFGRenderMinIntervalInMinutes = 0.1; sdkSetting.loggerInVerboseMode = YES; sdkSetting.firebaseAutoDataCollectionEnabled = NO; sdkSetting.clearcutStrategy = [[FIRIAMClearcutStrategy alloc] initWithMinWaitTimeInMills:5 * 1000 // 5 seconds maxWaitTimeInMills:30 * 1000 // 30 seconds failureBackoffTimeInMills:60 * 1000 // 60 seconds batchSendSize:50]; [FIRInAppMessaging bootstrapIAMWithSettings:sdkSetting]; return YES; } @end