Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/in_app_purchase/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.4

* Fix typo in parameter name.(`itemTile` -> `itemTitle`)

## 0.1.3

* Update code format.
Expand Down
2 changes: 1 addition & 1 deletion packages/in_app_purchase/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This package is not an _endorsed_ implementation of `in_app_purchase`. Therefore
```yaml
dependencies:
in_app_purchase: ^3.2.1
in_app_purchase_tizen: ^0.1.3
in_app_purchase_tizen: ^0.1.4
```

Then you can import `in_app_purchase` and `in_app_purchase_tizen` in your Dart code:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class InAppPurchaseTizenPlatform extends InAppPurchasePlatform {
final int seq = detail!['Seq']! as int;
final String invoiceId = detail['InvoiceID']! as String;
final String itemId = detail['ItemID']! as String;
final String itemTitle = detail['ItemTile']! as String;
final String itemTitle = detail['ItemTitle']! as String;
final int itemType = detail['ItemType']! as int;
final String orderTime = detail['OrderTime']! as String;
final int? period = detail['Period'] as int?;
Expand Down
2 changes: 1 addition & 1 deletion packages/in_app_purchase/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: in_app_purchase_tizen
description: Tizen implementation of the in_app_purchase plugin for Samsung Smart TV.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/in_app_purchase
version: 0.1.3
version: 0.1.4

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down