Skip to content

square/mobile-payments-sdk-ios

Repository files navigation

CocoaPods Swift Package Manager compatible

Square Mobile Payments SDK

Build remarkable in-person experiences using Square's Mobile Payments SDK product, now in beta. Use the Mobile Payments SDK to accept in-person payments using Square hardware. The Mobile Payments SDK has the advantage of being an API-driven framework that allows for full customization and uses the latest v2/payments API.

Learn what you can do with the Mobile Payments SDK here.

Installation

1. Add frameworks using SPM or CocoaPods

Option A. Swift Package Manager

Install with Swift Package Manager by following these steps:

  1. Select File > Add Package Dependencies....
  2. Enter the repository URL: https://github.com/square/mobile-payments-sdk-ios.
  3. Select the Exact Version dependency rule and specify the version as 2.0.0-beta3.
  4. Ensure the SquareMobilePaymentsSDK product is added to your target.

Optionally, you can also add the MockReaderUI product to your target to simulate a physical reader when one is not present in a sandbox environment.

Option B. CocoaPods

Install with CocoaPods by adding the following to your Podfile:

use_frameworks!

pod "SquareMobilePaymentsSDK", "~> 2.0.0-beta3"

# Optionally include MockReaderUI if you wish to simulate a physical reader when one is not present.
# This feature is only available when provided a sandbox application ID.
pod "MockReaderUI", "~> 2.0.0-beta3", configurations: ['Debug']

Note that MockReaderUI framework requires the SquareMobilePaymentsSDK framework to also be present in your Podfile.

2. Add build phase to setup the framework

On your application targets’ Build Phases settings tab, click the + icon and choose New Run Script Phase. Create a Run Script in which you specify your shell (ex: /bin/sh), and add the following contents to the script area below the shell:

SETUP_SCRIPT=${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}"/SquareMobilePaymentsSDK.framework/setup"
if [ -f "$SETUP_SCRIPT" ]; then
  "$SETUP_SCRIPT"
fi

Make sure this build phase is after any [CP] Embed Pods Frameworks or Embed Frameworks Build Phase.

Warning

Please note that the MockReaderUI product should only be used in debug configurations and is not to be included in the release version of your application.

3. Start integrating the SDK

Follow the Build on iOS guide to learn how to integrate the Mobile Payments SDK in your app.

Documentation

If you need more assistance, contact Developer and App Marketplace Support or ask for help in the Developer Forums.