-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 2.1: Change checkout preferences
* [ADDED] Provide method to let merchants change their checkout preferences `+[SumupSDK presentCheckoutPreferencesFromViewController:animated:completion:]` Sample application: * [ADDED] Add button to present checkout preferences * [BUGFIX] Add missing `-ObjC` linker flag to Swift sample app
- Loading branch information
Showing
142 changed files
with
196 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,9 @@ | |
[![Platform](https://img.shields.io/badge/Platform-iOS-lightgrey.svg?style=flat-square)](#prerequisites) | ||
[![Created](https://img.shields.io/badge/Made%20by-SumUp-blue.svg?style=flat-square)]() | ||
[![Supports](https://img.shields.io/badge/Requires-iOS%206+-red.svg?style=flat-square)]() | ||
[![Version](https://img.shields.io/badge/Version-2.0-yellowgreen.svg?style=flat-square)](CHANGELOG.md) | ||
[![Licence](https://img.shields.io/badge/Licence-SumUp-brightgreen.svg?style=flat-square)](LICENCE) | ||
[![Version](https://img.shields.io/badge/Version-2.1-yellowgreen.svg?style=flat-square)](CHANGELOG.md) | ||
[![License](https://img.shields.io/badge/License-SumUp-brightgreen.svg?style=flat-square)](LICENSE) | ||
|
||
|
||
This repository provides a native iOS SDK that enables you to integrate SumUp's proprietary | ||
card terminal(s) and its payment platform to accept credit and debit card payments | ||
|
@@ -24,11 +25,11 @@ For more information, please refer to SumUp's | |
|
||
### Prerequisites | ||
1. Registered for a merchant account via SumUp's [country websites](https://sumup.com/) (or received a test account). | ||
2. Received SumUp card terminal: Air, Air Lite, PIN+ Terminal, Chip/Magstripe or Signature Card Reader. | ||
2. Received SumUp card terminal: Air, Air Lite, PIN+ terminal or Chip & Signature reader. | ||
3. Requested an Affiliate (Access) Key via [SumUp Dashboard](https://me.sumup.com/developers) for Developers. | ||
4. Deployment Target iOS 6.0 or later. | ||
5. Xcode 7 and iOS SDK 9 or later. | ||
6. iPhone, iPad or iPod touch of all sizes and resolutions running on iOS 6+. | ||
6. iPhone, iPad or iPod touch. | ||
|
||
### Table of Contents | ||
* [Installation](#installation) | ||
|
@@ -39,6 +40,7 @@ For more information, please refer to SumUp's | |
* [Authenticate app](#authenticate-app) | ||
* [Login](#login) | ||
* [Accept card payments](#accept-card-payments) | ||
* [Update checkout preferences](#update-checkout-preferences) | ||
* [Community](#community) | ||
* [Changelog](#changelog) | ||
* [License](#license) | ||
|
@@ -51,27 +53,29 @@ The SumUp SDK is provided as an embedded framework `SumupSDK.embeddedframework` | |
that combines a static library, its headers and bundles containing resources such as | ||
images and localizations. Please follow the steps below to prepare your project: | ||
|
||
1. Add the `SumupSDK.embeddedframework` to your Xcode project (e.g. in the group Frameworks). | ||
Please ensure that the following frameworks are part of your app's target: | ||
|
||
SumupSDK.embeddedframework/SumupSDK.framework | ||
SumupSDK.embeddedframework/Reources/SMPSharedResources.bundle | ||
SumupSDK.embeddedframework/Resources/YTLibResources.bundle | ||
|
||
2. Link your app to `SumupSDK.framework`. | ||
1. Add the `SumupSDK.embeddedframework` to your Xcode project. | ||
2. Link your app against `SumupSDK.framework`. | ||
3. Link your app against the following system frameworks: | ||
|
||
AVFoundation | ||
Accelerate | ||
AVFoundation | ||
MapKit | ||
|
||
4. Add `-ObjC` to "Other Linker Flags" if not yet included. | ||
|
||
5. Add the bundles provided in `SumupSDK.embeddedframework/Resources` | ||
to your app target. | ||
|
||
SumupSDK.embeddedframework/Resources/SMPSharedResources.bundle | ||
SumupSDK.embeddedframework/Resources/YTLibResources.bundle | ||
|
||
|
||
> Note: | ||
> You can use the [sample app](https://github.com/sumup/sumup-ios-sdk/tree/master/SumupSDKSampleApp) | ||
that is provided with the SumUp SDK as a reference project. The Xcode project contains sample apps | ||
written in Objective-C and Swift. | ||
|
||
|
||
### Supported device orientation | ||
The SDK supports all device orientations on iPad and portrait on iPhone. | ||
Feel free to support other orientations on iPhone but please keep in mind that | ||
|
@@ -105,7 +109,7 @@ and [microphone access in iOS 7 and later](https://developer.apple.com/library/i | |
|
||
## Getting started | ||
### Authenticate app | ||
Before calling any additional feature of the SumUp SDK, you are required to setup the SDK with your Affiliate (Access) Key: | ||
Before calling any additional feature of the SumUp SDK, you are required to set up the SDK with your Affiliate (Access) Key: | ||
```objc | ||
#import <SumupSDK/SumupSDK.h> | ||
|
||
|
@@ -179,6 +183,26 @@ Start a payment by using the checkout request below: | |
}]; | ||
``` | ||
|
||
### Update checkout preferences | ||
When logged in you can let merchants check and update their checkout | ||
preferences. Merchants can select their preferred card terminal and set up a | ||
new one if needed. The preferences available to a merchant depend on their | ||
respective account settings. | ||
|
||
```objc | ||
[SumupSDK presentCheckoutPreferencesFromViewController:self | ||
animated:YES | ||
completion:^(BOOL success, NSError * _Nullable error) { | ||
if (!success) { | ||
// there was a problem presenting the preferences | ||
} else { | ||
// next checkout will reflect the merchant's changes. | ||
} | ||
}]; | ||
} | ||
``` | ||
## Community | ||
- **Questions?** Get in contact with our integration team by sending an email to | ||
<a href="mailto:[email protected]">[email protected]</a>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+0 Bytes
(100%)
...dedframework/SumupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/Info.plist
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
...K.framework/Versions/A/Resources/SMPSharedResources.bundle/PECSignatureVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-3 Bytes
(100%)
...K.framework/Versions/A/Resources/SMPSharedResources.bundle/PECSignatureVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/PECSignatureVC~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/PECSignatureVC~ipad.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/PECWebBrowser.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/PECWebBrowser.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+237 Bytes
...ork/Versions/A/Resources/SMPSharedResources.bundle/PaymentProgress.storyboardc/Info.plist
Binary file not shown.
Binary file added
BIN
+1011 Bytes
...urces.bundle/PaymentProgress.storyboardc/PLVPaymentProgressViewController.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+1011 Bytes
...urces.bundle/PaymentProgress.storyboardc/PLVPaymentProgressViewController.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+10.3 KB
...edResources.bundle/PaymentProgress.storyboardc/zpf-6m-Hxi-view-jm8-UC-rMH.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+10.3 KB
...edResources.bundle/PaymentProgress.storyboardc/zpf-6m-Hxi-view-jm8-UC-rMH.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+3.13 KB
...sources/SMPSharedResources.bundle/SMPAdyenPaymentViewController~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file added
BIN
+3.13 KB
.../A/Resources/SMPSharedResources.bundle/SMPAdyenPaymentViewController~ipad.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+3.14 KB
.../A/Resources/SMPSharedResources.bundle/SMPAdyenPaymentViewController~ipad.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+3.14 KB
...urces/SMPSharedResources.bundle/SMPAdyenPaymentViewController~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file added
BIN
+3.13 KB
.../Resources/SMPSharedResources.bundle/SMPAdyenPaymentViewController~iphone.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+3.13 KB
.../Resources/SMPSharedResources.bundle/SMPAdyenPaymentViewController~iphone.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
...ons/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~ipad.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
...s/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...rsions/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~iphone.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
...rsions/A/Resources/SMPSharedResources.bundle/SMPDeviceCarouselCell~iphone.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-77 Bytes
(98%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/SMPInstructionsView.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-88 Bytes
(98%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/SMPInstructionsView.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-3 Bytes
(100%)
...ions/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
.../Versions/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
.../Versions/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~ipad.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
...ns/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
...ersions/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~iphone.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
...ersions/A/Resources/SMPSharedResources.bundle/SMPLoadingStatusView~iphone.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/SMPLocationDeniedView.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-9 Bytes
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/SMPLocationDeniedView.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+7.41 KB
...mupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/SMPNumPad.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+7.41 KB
...mupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/SMPNumPad.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+7.64 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPNumPadWithReturnKey.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+7.63 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPNumPadWithReturnKey.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-14 Bytes
(100%)
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentCardReaderVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentCardReaderVC.nib/runtime.nib
Binary file not shown.
Binary file removed
BIN
-10.9 KB
...upSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentCashTenderVC.nib
Binary file not shown.
Binary file added
BIN
+5.2 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentCashTenderVC.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+5.19 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentCashTenderVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-2 Bytes
(100%)
...amework/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentFailedVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
...amework/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentFailedVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentOptionsVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...mework/Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentOptionsVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentReceiptRequestVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPPaymentReceiptRequestVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-88 Bytes
(98%)
...ns/A/Resources/SMPSharedResources.bundle/SMPPaymentSmsEntryViewController.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-89 Bytes
(98%)
...ns/A/Resources/SMPSharedResources.bundle/SMPPaymentSmsEntryViewController.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-90 Bytes
(98%)
...Resources/SMPSharedResources.bundle/SMPPaymentSmsEntryViewController~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-94 Bytes
(98%)
...Resources/SMPSharedResources.bundle/SMPPaymentSmsEntryViewController~ipad.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+5.54 KB
...ersions/A/Resources/SMPSharedResources.bundle/SMPPaymentTipViewController.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+5.53 KB
...ersions/A/Resources/SMPSharedResources.bundle/SMPPaymentTipViewController.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+10 Bytes
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPPinPlusFirmwareUpdateVC.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+7 Bytes
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPPinPlusFirmwareUpdateVC.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
...Resources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
-5 Bytes
(100%)
...ns/A/Resources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
-4 Bytes
(100%)
...ns/A/Resources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~ipad.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+3 Bytes
(100%)
...sources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
-5 Bytes
(100%)
.../A/Resources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~iphone.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+1 Byte
(100%)
.../A/Resources/SMPSharedResources.bundle/SMPSDKWelcomeViewController~iphone.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+2.81 KB
.../Versions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file added
BIN
+2.82 KB
...ework/Versions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~ipad.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+2.82 KB
...ework/Versions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~ipad.nib/runtime.nib
Binary file not shown.
Binary file added
BIN
+2.81 KB
...ersions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file added
BIN
+2.82 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~iphone.nib/objects.nib
Binary file not shown.
Binary file added
BIN
+2.82 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/SMPTwoLabelCell~iphone.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+2 Bytes
(100%)
...Versions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~ipad.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
+4 Bytes
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~ipad.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+6 Bytes
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~ipad.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
-8 Bytes
(100%)
...rsions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~iphone.nib/objects-8.0+.nib
Binary file not shown.
Binary file modified
BIN
-9 Bytes
(100%)
...rk/Versions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~iphone.nib/objects.nib
Binary file not shown.
Binary file modified
BIN
+5 Bytes
(100%)
...rk/Versions/A/Resources/SMPSharedResources.bundle/SMPWalkthroughVC~iphone.nib/runtime.nib
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...ork/SumupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/SumupSDK-Info.plist
Binary file not shown.
Binary file modified
BIN
+2.42 KB
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/ca.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file added
BIN
+4.44 KB
...upSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/card_contact.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.09 KB
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.9 KB
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.16 KB
...K.framework/Versions/A/Resources/SMPSharedResources.bundle/card_contactless.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.5 KB
...ramework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+17.5 KB
...ramework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+4.49 KB
...umupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/card_swipe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.81 KB
...pSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.6 KB
...pSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.59 KB
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/de.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file added
BIN
+3.99 KB
...mupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/device_back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.53 KB
...SDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.5 KB
...SDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.6 KB
...upSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/device_front.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+24.6 KB
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+40.1 KB
...DK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.4 KB
(100%)
...k/Versions/A/Resources/SMPSharedResources.bundle/en-US.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+1.4 KB
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/en.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+2.42 KB
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/es.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+3.47 KB
(110%)
...work/Versions/A/Resources/SMPSharedResources.bundle/fr.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+2.4 KB
(110%)
...work/Versions/A/Resources/SMPSharedResources.bundle/it.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file added
BIN
+1.28 KB
...SDK.framework/Versions/A/Resources/SMPSharedResources.bundle/lightIndicator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.48 KB
....framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.71 KB
....framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+1.58 KB
(100%)
...k/Versions/A/Resources/SMPSharedResources.bundle/nl-BE.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+1.58 KB
(100%)
...work/Versions/A/Resources/SMPSharedResources.bundle/nl.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file added
BIN
+1.53 KB
.../SumupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/pindigit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2 KB
...mupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.62 KB
...mupSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.38 KB
...pSDK.framework/Versions/A/Resources/SMPSharedResources.bundle/pindigit_full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.64 KB
...K.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.59 KB
...K.framework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+2.72 KB
(110%)
...work/Versions/A/Resources/SMPSharedResources.bundle/pl.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+3.06 KB
(110%)
...k/Versions/A/Resources/SMPSharedResources.bundle/pt-PT.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+3.45 KB
(110%)
...work/Versions/A/Resources/SMPSharedResources.bundle/pt.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file modified
BIN
+3.4 KB
(110%)
...work/Versions/A/Resources/SMPSharedResources.bundle/sv.lproj/SMPSharedLocalizable.strings
Binary file not shown.
Binary file added
BIN
+6.68 KB
...framework/Versions/A/Resources/SMPSharedResources.bundle/walkthrough_failed.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.5 KB
...mework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Oops, something went wrong.
Binary file added
BIN
+23.1 KB
...mework/Versions/A/Resources/SMPSharedResources.bundle/[email protected]
Oops, something went wrong.
Binary file added
BIN
+8.1 KB
...ork/Versions/A/Resources/SMPSharedResources.bundle/walkthrough_failed_large.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+6.68 KB
...ions/A/Resources/SMPSharedResources.bundle/walkthrough_m10_scan_result_back.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+7.75 KB
.../Resources/SMPSharedResources.bundle/walkthrough_m10_scan_result_back_large.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+4.03 KB
...ons/A/Resources/SMPSharedResources.bundle/walkthrough_m10_scan_result_front.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+4.54 KB
...Resources/SMPSharedResources.bundle/walkthrough_m10_scan_result_front_large.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file modified
BIN
+756 KB
(100%)
SumupSDK.embeddedframework/SumupSDK.framework/Versions/A/SumupSDK
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.