Worldpay / worldpay-lib-ios

iOS Library for Worldpay
https://online.worldpay.com
20 stars 11 forks source link

Without cocapods can I use the worldpay #6

Closed smilydronavalli closed 8 years ago

smilydronavalli commented 8 years ago

Hi,

Please help me how to use worldpay SDK with out cocoapods.

Thanks Smily

dcapilla commented 8 years ago

Hello Smily,

Since the Worldpay SDK makes use of the AFNetworking library, we strongly recommend to use cocoapods in order to install it (it's also easier). However, if you want to proceed with manual installation, you would need to get rid of the /Pods folder, and also get rid of the "Check Pods Manifest" phase under the "Build Phases" of the project settings and then install AFNetworking manually. In order to install a library manually, you would normally do:

  1. - Download the library from GitHub: https://github.com/AFNetworking/AFNetworking
  2. - Add the files to Xcode
  3. - Import headers

However, the ability to do this depends on the library itself (in this case AFNetworking). So you would need to check their documentation in order to verify how to import the library manually.

I hope it helps.

David

smilydronavalli commented 8 years ago

Hello David,

Thank you .