https://github.com/cafebazaar/flutter_poolakey
https://github.com/cafebazaar/flutter_poolakey
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cafebazaar/flutter_poolakey
- Owner: cafebazaar
- License: apache-2.0
- Created: 2021-04-24T14:09:01.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-13T16:02:32.000Z (5 months ago)
- Last Synced: 2025-03-26T18:06:33.782Z (3 months ago)
- Language: Dart
- Size: 17.4 MB
- Stars: 17
- Watchers: 5
- Forks: 21
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://pub.dartlang.org/packages/flutter_poolakey)
### Android In-App Billing *Flutter* SDK for [Cafe Bazaar](https://cafebazaar.ir/?l=en) App Store.
## Getting Started
To start working with Flutter Poolakey, you need to add its dependency in your
project's `pubspec.yaml` file:### Dependency
```yaml
dependencies:
flutter_poolakey: ^2.2.0-1.0.0-alpha01
```Then run the below command to retrieve it:
```shell
flutter packages get
```And then Go to the allprojects section of your project gradle file and add the JitPack repository to the repositories block:
```groovy
allprojects {
repositories {
// add JitPack
maven { url 'https://jitpack.io' }
}
}
```### Import it
Now in your Dart code, you can use:
```dart
import 'package:flutter_poolakey/flutter_poolakey.dart';
```### How to use
For more information regarding the usage of flutter Poolakey, please check out
the [wiki](https://github.com/cafebazaar/flutter_poolakey/wiki) page.### Sample
There is a fully functional sample application that demonstrates the usage of flutter Poolakey, all you have
to do is cloning the project and running
the [app](https://github.com/cafebazaar/flutter_poolakey/tree/master/example) module.#### flutter_poolakey is a wrapper around [Poolakey](https://github.com/cafebazaar/Poolakey) to use in Flutter.
> [Poolakey](https://github.com/cafebazaar/Poolakey) is an Android In-App Billing SDK
> for [Cafe Bazaar](https://cafebazaar.ir/?l=en) App Store.