CocoaPods trunk is moving to be read-only. Read more on the blog, there are 11 months to go.

ios-payment-links 1.5.1

ios-payment-links 1.5.1

Maintained by App Charge.



  • By
  • Appcharge

💳 ACPaymentLinks

ACPaymentLinks is a lightweight, in-app iOS checkout SDK by Appcharge.
This repository contains the public CocoaPods integration and a prebuilt static .xcframework.

📦 SDK Requirements

📲 Installation (CocoaPods)

If your project does not use CocoaPods yet:

Install CocoaPods:

sudo gem install cocoapods

Use --version to determine you current pods version:

pod --version

Initialize CocoaPods:

pod init

Install pods:

pod repo update
pod install

Open the workspace:

YourApp.xcworkspace

Add the Appcharge SDK via your Podfile:

platform :ios, '13.0'
target 'YourApp' do
    // Import latest version
    pod 'ACPaymentLinks'
    // Or, import specific version 
    pod 'ACPaymentLinks', '~> <version>'
end

Then:

pod repo update
pod install

🚀 Basic Usage Example

import UIKit
import ACPaymentLinks

class ViewController: UIViewController {
    override func viewDidLoad() {
        super.viewDidLoad()
        // Example usage here
    }
}

🔄 Updating the SDK

pod repo update pod update ACPaymentLinks


🧯 Troubleshooting

Common errors and fixes included.


📋 Requirements Recap

iOS 13+, Xcode 15+, Swift 5.7–5.10, CocoaPods 1.16.0+


📄 License

MIT