Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/marcbruins/once-xamarin-binding


https://github.com/marcbruins/once-xamarin-binding

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

# Once-Xamarin-binding

Xamarin bindings library for the Once android library

For more information on Once see the [Once] github page
## Setup
Plugin is available on [Nuget].

Add to your Xamarin.Droid project
## Usage
First Once needs to be initialised in the OnCreate method:
```sh
Once.Initialise(this);
```
Now you can start using Once
```sh
string showAppTour = "showAppTour"; //unique tag

if (!Once.beenDone(Once.THIS_APP_INSTALL, showAppTour)) {
Once.markDone(showAppTour);
}
```
For more options please visit the github page: https://github.com/jonfinerty/Once.
### Thanks to
[Jon Finerty] for the original library.

[Martijn van Dijk] for helping with bindings.

[Martijn van Dijk]:
[Nuget]:
[Once]:
[Jon Finerty]: