Skip to content

iOS SDK pod integration

Vipin Aggarwal edited this page Sep 26, 2019 · 9 revisions
  • If cocoapods is not installed, head here for cocoapods installation instruction

  • Go inside your project directory from the terminal

      cd path/to/your/project
    
  • Now we are going to make an actual pod file, type in terminal:

      nano Podfile
    
  • It will open an Editor, in Editor type, add following line:

      target 'YourProjectName' do
          pod 'PayUIndia-PG-SDK'
      end
    
  • Now, press ctlr-x to leave the editor.

  • Last thing we have to do is to type in terminal

      pod install
    
  • Now, go to your project folder and open YourProjectName.xcworkspace.

  • Inside, Pods directory, you’ll find PayUIndia-PG-SDK

  • To integrate further, please follow from Integration docs here.