Skip to content

Commit

Permalink
V 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
javad-zobeidi committed Jul 10, 2019
1 parent 2df4e1a commit cd1bd94
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 77 deletions.
116 changes: 70 additions & 46 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.1.1

* update ReadMeFile
* fixed bus
* update pubspec file

## 0.1.0

* TODO: Describe initial release.


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cafebazaar_flutter

CafeBazaar In-App Billing Plugin for flutter
CafeBazaar In-App Billing package for flutter this package is just for android applications and not work on ios

This plugin is just for Android applications

Expand Down
27 changes: 0 additions & 27 deletions example/test/widget_test.dart

This file was deleted.

3 changes: 2 additions & 1 deletion lib/cafebazaar_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,12 @@ class CafebazaarFlutter {
dynamic result = await _channel.invokeMethod("getPurchase", args);
return jsonDecode(result);
}

static Future<dynamic> queryInventoryAsync({@required String sku}) async {
Map<String, dynamic> args = <String, dynamic>{};
args.putIfAbsent("sku", () => sku);
dynamic result = await _channel.invokeMethod("queryInventoryAsync", args);
return null;
return result;
}

static Future<dynamic> launchPurchaseFlow(
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: cafebazaar_flutter
description: CafeBazaar In-App Billing Plugin for flutter
version: 0.1.0
description: CafeBazaar In-App Billing package for flutter this package is just for android applications and not work on ios
version: 0.1.1
author: https://Javadzobeidi.ir <[email protected]>
homepage: https://github.com/irdeveloper89/cafebazaar_flutter

Expand Down

0 comments on commit cd1bd94

Please sign in to comment.