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 2445e00 commit aa977ecCopy full SHA for aa977ec
Branch-SDK/Branch-SDK/BNCServerInterface.m
@@ -232,6 +232,9 @@ - (NSDictionary *)prepareParamDict:(NSDictionary *)params key:(NSString *)key re
232
NSMutableDictionary *fullParamDict = [[NSMutableDictionary alloc] init];
233
[fullParamDict addEntriesFromDictionary:params];
234
fullParamDict[@"sdk"] = [NSString stringWithFormat:@"ios%@", SDK_VERSION];
235
+ if (!NSClassFromString(@"UIApplication")) {
236
+ fullParamDict[@"ios_extension"] = @(1);
237
+ }
238
fullParamDict[@"retryNumber"] = @(retryNumber);
239
fullParamDict[@"branch_key"] = key;
240
0 commit comments