Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use_frameworks!
target 'hello-ios' do
platform :ios, '13.0'
pod 'LaunchDarkly', '>= 9.6'
pod 'LaunchDarkly', '>= 11.2'
end

target 'hello-watchOS Extension' do
platform :watchos, '6.0'
pod 'LaunchDarkly', '>= 9.6'
pod 'LaunchDarkly', '>= 11.2'
end
2 changes: 1 addition & 1 deletion hello-common/LDClientConfigurator.m
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ +(void)setupLDClient {
LDConfig *config = [[LDConfig alloc]
initWithMobileKey:sdkKey autoEnvAttributes:true];

[LDClient startWithConfiguration:config context:result.success completion: nil];
[LDClient startWithConfiguration:config context:result.success startWaitSeconds:5 completion:nil];
}
}

Expand Down
Loading