You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
Describe the bug
Calling client.configure does never resolve when called in the Android Emulator but does so on a real device.
To reproduce
const client = new LDClient();
console.log('configuring LaunchDarkly'); // This is being logged into the console
await client.configure(
{ mobileKey: 'abc-123' },
{ key: 'example-user' }
);
console.log('configured LaunchDarkly'); // This never shows when run inside the Emulator
Side note
When putting the app into the app switcher, the promise resolves but allFlags() returns an empty object instead of the flags.
Expected behavior configure resolves also in the Emulator.