Xamarin.Android binding library for Launchdarkly SDK.
For more information on LaunchDarkly see the Android SDK reference.
This binding library is available on Nuget.
LDConfig ldConfig = new LDConfig.Builder().SetMobileKey("YOUR_MOBILE_KEY").Build();
LDUser user = new LDUser.Builder("user key").Email("fake@example.com").Build();
// NOTE: This method blocks for up to 5 seconds. See Javadoc or http://docs.launchdarkly.com/docs/android-sdk-reference
// for nonblocking options.
LDClient ldClient = LDClient.Init(Application, ldConfig, user, 5);
See the Ricardo.LaunchDarkly.Android.Sample app.
- xamarin-launchdarkly-android is licensed under MIT