Skip to content

Commit

Permalink
# v1.0(29)
Browse files Browse the repository at this point in the history
## Improvements
- BG colour for lower iOS Versions
  • Loading branch information
Jenkins 2 committed Sep 28, 2020
1 parent 1880beb commit a6e9449
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
2 changes: 1 addition & 1 deletion APAC-BNPayment.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "APAC-BNPayment"
spec.version = "1.3.5"
spec.version = "1.3.6"
spec.summary = "The Mobile Payment SDK from Bambora (APAC) makes it simple to accept credit card payments in your app."
build_tag = spec.version
spec.homepage = "http://bambora.com/en/au"
Expand Down
8 changes: 7 additions & 1 deletion BNPayment/UI/ViewControllers/BNCreditCardRegistrationVC.m
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,13 @@ - (void)viewDidLoad {
self.bundle=[BNBundleUtils paymentLibBundle];
}
self.edgesForExtendedLayout = UIRectEdgeNone;
self.view.backgroundColor = [UIColor systemGroupedBackgroundColor];

if (@available(iOS 13, *)) {
self.view.backgroundColor = [UIColor systemGroupedBackgroundColor];
} else {
self.view.backgroundColor = [UIColor groupTableViewBackgroundColor];
}


[self setupCreditCardForm];

Expand Down
2 changes: 1 addition & 1 deletion Example/BNPayment-Example-Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>28</string>
<string>29</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions Example/BNPayment-Example.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = "BNPayment-Example/BNPayment-Example.entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 28;
CURRENT_PROJECT_VERSION = 29;
DEVELOPMENT_TEAM = UQV9F8CUQE;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -709,7 +709,7 @@
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = "BNPayment-Example/BNPayment-Example.entitlements";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 28;
CURRENT_PROJECT_VERSION = 29;
DEVELOPMENT_TEAM = UQV9F8CUQE;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
2 changes: 1 addition & 1 deletion Example/BNPayment-Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>28</string>
<string>29</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>UILaunchStoryboardName</key>
Expand Down
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- APAC-BNPayment (1.3.1):
- APAC-BNPayment (1.3.6):
- CardIO (~> 5.4.1)
- CardIO (5.4.1)

Expand All @@ -16,7 +16,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
APAC-BNPayment: f9d7c6cc00c163b593c46b3ee0b9afdf8dc78d8b
APAC-BNPayment: e1f8ff7726cf227728bf5ff56239becc2d0fcfff
CardIO: 56983b39b62f495fc6dae9ad7cf875143df06443

PODFILE CHECKSUM: 4bb2fb36472aca29225108bfd41c067338c5d9dc
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ platform :ios do
sh("cd #{destination} && git checkout #{branch}")

# Sync current state to Githib Repo
sh("cd #{source} && rsync -rv ./ #{destination} --exclude /.git/ --exclude .gitignore --exclude /build --exclude /build/ --exclude .DS_Store --exclude APAC-BNPayment.podspec")
sh("cd #{source} && rsync -rv --delete ./ #{destination} --exclude /.git/ --exclude .gitignore --exclude /build --exclude /build/ --exclude .DS_Store")

# Ignore Secrets
sh("cd #{destination} && git update-index --assume-unchanged Example/BNPayment-Example/MerchantID.txt")
Expand Down

0 comments on commit a6e9449

Please sign in to comment.