Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ricardoarchive/xamarin-launchdarkly-ios
Xamarin.iOS binding library for Launchdarkly SDK
https://github.com/ricardoarchive/xamarin-launchdarkly-ios
apps-team binding csharp ios launchdarkly nuget-package xamarin
Last synced: about 2 months ago
JSON representation
Xamarin.iOS binding library for Launchdarkly SDK
- Host: GitHub
- URL: https://github.com/ricardoarchive/xamarin-launchdarkly-ios
- Owner: ricardoarchive
- License: mit
- Created: 2017-08-15T20:43:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-13T10:23:15.000Z (about 6 years ago)
- Last Synced: 2024-05-19T01:57:16.109Z (9 months ago)
- Topics: apps-team, binding, csharp, ios, launchdarkly, nuget-package, xamarin
- Language: C#
- Homepage: https://www.nuget.org/packages/Ricardo.LaunchDarkly.iOS/
- Size: 2.8 MB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LaunchDarkly SDK for Xamarin
================Xamarin.iOS binding library for [Launchdarkly SDK](https://github.com/launchdarkly/ios-client).
For more information on LaunchDarkly see the iOS SDK [reference](https://docs.launchdarkly.com/v2.0/docs/ios-sdk-reference).
This binding library is available on [Nuget](https://www.nuget.org/packages/Ricardo.LaunchDarkly.iOS/).
Documentation
=============public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
// Instantiate a new LDClient with your mobile key and user
LDConfig config = new LDConfig("YOUR_MOBILE_KEY");LDUserBuilder user = new LDUserBuilder();
user.Key = "aa0ceb";LDClient.SharedInstance.Start(config, user);
return true;
}See the Ricardo.LaunchDarkly.iOS.Sample app.
License
=======- xamarin-launchdarkly-ios is licensed under [MIT](http://opensource.org/licenses/mit-license)