iOS Project Configuration

Import the SDK

import PayablMerchant

Deep Linking (Info.plist)

To handle the redirect back from the Banking App (especially for custom schemes like payabl://), you must register the URL scheme.

Add this to your Info.plist:

To handle the redirect back from the Banking App (especially for custom schemes like payabl://), you must register the URL scheme. Add this to your Info.plist:

<key>CFBundleURLTypes</key>
<array>
  <dict>
    <key>CFBundleURLSchemes</key>
    <array>
      <string>payabl</string>
    </array>
    <key>CFBundleURLName</key>
    <string>Payment Callback</string>
  </dict>
</array>