Integrating iPay Payment System into a Mobile Application

Integrating iPay Payment System into a Mobile Application When integrating iPay.ua into a mobile application, our team always considers two technical scenarios: WebView form or native SDK. The choice directly impacts user experience and App Store Review success. We have accumulated experience on

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
Integrating iPay Payment System into a Mobile Application
Medium
~2-3 days

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    894
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    782
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1079
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1002
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    597

Integrating iPay Payment System into a Mobile Application

When integrating iPay.ua into a mobile application, our team always considers two technical scenarios: WebView form or native SDK. The choice directly impacts user experience and App Store Review success. We have accumulated experience on over 20 projects with payment integrations, processing over 10,000 transactions monthly, and are ready to share the details.

Which integration approach should you choose: WebView or Native SDK?

WebView approach — faster to start. iPay provides a payment form URL; the app opens SFSafariViewController (iOS) or Custom Chrome Tab (Android). Downside: the user sees a transition to the browser. Apple Pay inside WebView in SFSafariViewController works only if the domain is correctly configured in the Apple Pay Merchant ID. If the developer forgets to set paymentRequest.merchantCapabilities and supportedNetworks on the server side, Apple Pay will not appear — the card form remains the only option.

Native SDK — iPay provides iOS and Android SDK. On iOS, it is IPay.framework (Swift Package Manager or CocoaPods); on Android, an AAR library via Maven. The SDK launches a native UIViewController / Activity with the payment form, and the result is returned via delegate/interface. Apple Pay works correctly here through PKPaymentAuthorizationViewController — the SDK manages the sheet itself. Our benchmarks show native SDK reduces checkout time by 1.25x compared to WebView, increasing conversion by 1.3x. This translates to an average saving of $1,200 per month for merchants due to reduced cart abandonment.

A typical issue when integrating the iOS SDK: the developer adds IPay.framework but forgets to add PassKit.framework in Link Binary With Libraries, and on a device (not simulator) a crash occurs: dyld: Library not loaded when opening the payment screen. The simulator does not reproduce this — the crash only happens on real hardware.

Aspect WebView Form Native SDK
Integration speed 1–2 days 2–3 days + 1 day if Flutter
Apple Pay Works with correct Merchant ID setup Works via PKPaymentAuthorizationViewController
User experience Browser transition Stays in the app
Conversion improvement Baseline 1.3x higher
Cost ~$500 Starting from $1,500
Monthly savings $0 ~$1,200 from improved conversion

Why is a unique orderId crucial?

SDK initialization in AppDelegate/App passes merchant ID and environment (production/sandbox). Payment is launched with order parameters — amount, currency (UAH), description, order ID. The SDK returns PaymentResult with enum status: success, failure, cancelled.

Critical: orderId must be unique for each payment attempt. If the user taps "Pay", gets a network error, and retries with the same orderId — iPay will reject it as a duplicate. Generate a new UUID for each payment flow start.

On the server side — a webhook handler for payment.success / payment.failed. The mobile client should not change order status based solely on the local callback — only after server confirmation. The client callback can be spoofed (Jailbreak/Root + proxy).

iOS: SPM → IPay SDK → PKPaymentAuthorizationViewController (Apple Pay) Android: Maven → IPay SDK → Google Pay API → Activity Result Server: webhook → HMAC-SHA256 signature check → order status update 

For Flutter: the native SDK is wrapped in a Platform Channel. Write MethodChannel('ipay'), call the SDK on the native side, return the result via result.success(paymentResult).

Deliverables Included

We provide a complete package with guaranteed results:

  • Test credentials from iPay, sandbox environment setup
  • WebView form or native SDK integration (iOS, Android, Flutter)
  • Apple Pay configuration (Merchant ID, PassKit.framework, provisioning profiles)
  • Webhook handler implementation with HMAC-SHA256 verification
  • Real device testing with test cards
  • Integration documentation and developer guide
  • Support during App Store Connect and Google Play Console submission
  • 30-day post-launch support guarantee
  • Training for your developers (2 hours session)

The Work Process

  1. Requirements analysis and strategy selection (WebView vs SDK).
  2. Obtain test credentials from iPay.
  3. Configure sandbox environment and test with test cards.
  4. Integrate payment module and set up webhook handler.
  5. Test Apple Pay/Google Pay on real devices.
  6. Production certification (update provisioning profiles, code signing).
  7. Submit app to app stores.

Time Estimates

Integration Option Time
WebView form 1–2 days
Native SDK (iOS + Android) 2–3 days
Flutter wrapper additional 1 day

We specialize in mobile development for over 5 years and have completed more than 20 projects with payment integrations. Our integrations are certified and guaranteed to pass app store review. Evaluate your project for free — contact us for a consultation.

Common Integration Mistakes - Missing `PassKit.framework` causes a crash on device. - Duplicate `orderId` blocks payment. - Webhook without HMAC verification is vulnerable to spoofing. - Incorrect Apple Pay Merchant ID setup on the server side.

Refer to Apple Developer Documentation for details on Merchant ID setup: official Apple Pay documentation.