Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevesoltys/revenuecat
A RevenueCat API wrapper.
https://github.com/stevesoltys/revenuecat
api revenuecat wrapper
Last synced: about 1 month ago
JSON representation
A RevenueCat API wrapper.
- Host: GitHub
- URL: https://github.com/stevesoltys/revenuecat
- Owner: stevesoltys
- License: mit
- Created: 2021-07-09T02:22:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T00:45:47.000Z (10 months ago)
- Last Synced: 2024-03-13T01:43:15.210Z (10 months ago)
- Topics: api, revenuecat, wrapper
- Language: Kotlin
- Homepage:
- Size: 61.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RevenueCat
[![Build Status](https://travis-ci.com/stevesoltys/revenuecat.svg?branch=master)](https://travis-ci.com/github/stevesoltys/revenuecat)An [RevenueCat API](https://docs.revenuecat.com/reference) wrapper.
## Installation
```groovy
repositories {
maven { url 'https://jitpack.io' }
}dependencies {
compile 'com.github.stevesoltys:revenuecat:0.1.1'
}
```## Usage
Create a `RevenueCat` instance with your API key, and run an API query.Here's an example:
```kotlin
val revenueCat = RevenueCat("sk_dfsg234fv7849hfqa4ufsd")val subscriber = revenueCat.getOrCreateSubscriber(identifier)
// ...
```## License
This library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).