Skip to content

Commit

Permalink
Dev (#52)
Browse files Browse the repository at this point in the history
* Fix ios build
  • Loading branch information
mit-73 authored Feb 17, 2022
1 parent e6c50fa commit 60cabbb
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 34 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,6 @@ app.*.symbols
app.*.map.json

# Exceptions to above rules.
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages

example/ios/Podfile.lock
29 changes: 0 additions & 29 deletions example/ios/Podfile.lock

This file was deleted.

4 changes: 4 additions & 0 deletions packages/mad_pay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.2.11

* Bump `mad_pay_ios` version to `2.2.7` (Fix ios build)

## 2.2.10

* Fixed an issue with the payment network `interac` enum value being named incorrectly causing the OR_BIBED_01 error.
Expand Down
4 changes: 2 additions & 2 deletions packages/mad_pay/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mad_pay
description: Mad Pay will help you make payments through Apple Pay and Google Pay
version: 2.2.10
version: 2.2.11
repository: https://github.com/MadBrains/Mad-Pay-Flutter
issue_tracker: https://github.com/MadBrains/Mad-Pay-Flutter/issues
homepage: https://madbrains.ru/
Expand All @@ -15,7 +15,7 @@ dependencies:

mad_pay_platform_interface: ^2.2.4
mad_pay_android: ^2.2.9
mad_pay_ios: ^2.2.6
mad_pay_ios: ^2.2.7

# For development. Remove/comment before publishing to pub.
# dependency_overrides:
Expand Down
4 changes: 4 additions & 0 deletions packages/mad_pay_ios/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.2.7

* Fix ios build

## 2.2.6

* Fixed an issue with the payment network `interac` enum value being named incorrectly causing the OR_BIBED_01 error
Expand Down
2 changes: 1 addition & 1 deletion packages/mad_pay_ios/ios/Classes/PaymentHelpers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PaymentNetworkHelper {
return .masterCard
case PaymentNetwork.amex:
return .amex
case PaymentNetwork.interact:
case PaymentNetwork.interac:
if #available(iOS 9.2, *) {
return .interac
}
Expand Down
2 changes: 1 addition & 1 deletion packages/mad_pay_ios/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mad_pay_ios
description: A plug-in to add support for payments on the iOS side of Mad Pay
version: 2.2.6
version: 2.2.7
repository: https://github.com/MadBrains/Mad-Pay-Flutter
issue_tracker: https://github.com/MadBrains/Mad-Pay-Flutter/issues
homepage: https://madbrains.ru/
Expand Down

0 comments on commit 60cabbb

Please sign in to comment.