Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ public void onCreate() {
.build();
}

LDClient.init(this, ldConfig, context);
// Initialize the client and wait up to 5 seconds for it to receive the latest flag
// values. If initialization does not complete within the timeout, the client is still
// returned and can be used with cached values.
LDClient.init(this, ldConfig, context, 5);
}

private boolean isUserLoggedIn() {
Expand Down
Loading