0

I have implemented paytab payment gateway these are the steps which i have follow from the documentation of the paytab in this link.

steps which i did

  1. download the sdk from the above link

  2. add to my project

  3. add the import line to the header file

    #import <paytabs-iOS/paytabs_iOS.h>
    
  4. install the following pods to my project for the paytab as documentation said

    #for PayTabs

    pod 'BIObjCHelpers'
    pod 'Mantle'
    pod 'Lockbox'
    pod 'SBJson'
    pod 'PINCache'
    pod 'PayCardsRecognizer'
    pod 'Reachability'
    pod 'AFNetworking'
    pod 'MBProgressHUD', '~> 1.1.0'
    pod 'ActionSheetPicker'
    

This is working file when i am installing on iPhone with wire. The error is coming when i am generating the ipa (Archive) in pod "AFNetworking". Am I doing anything wrong?

enter image description here

James Z
  • 12,209
  • 10
  • 24
  • 44
sunil kumar
  • 53
  • 2
  • 9

1 Answers1

0

You need to disable bitcode or wait for that framework to support full bitcode.

To disable bitcode, select your project -> Build Settings -> search for Enable Bitcode and set to No enter image description here

dduyduong
  • 124
  • 1
  • 5