Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcbruins/once-xamarin-binding
https://github.com/marcbruins/once-xamarin-binding
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/marcbruins/once-xamarin-binding
- Owner: MarcBruins
- License: mit
- Created: 2016-03-03T10:19:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-14T15:16:12.000Z (almost 9 years ago)
- Last Synced: 2024-12-17T16:49:19.938Z (about 1 month ago)
- Language: C#
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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 tagif (!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]: