In my project i need to implement payment gateway so that i tried to implement through Authorize.Net iOS SDK .
By googling i have followed some steps as in below
1)Downloaded Authorize.Net iOS SDK from https://developer.authorize.net/integration/fifteenminutes/ios/
2) Goto MyProject -> Targets -> Build Settings.
1.Header Search Paths :
${SDK_DIR}/usr/include/libxml2
Mark the Recursive checkbox as checked
$(SRCROOT)/anet_ios_sdk-1.1.1/ANMobilePaymentLib
Library Search Paths : $(SRCROOT)/anet_ios_sdk-1.1.1/ANMobilePaymentLib
Other Linker Flags : -lxml2
3) Imported SystemConfiguration.framework
4) Imported libxml2.2.dylib and libxml2dylib
3) Drag and drop the ANMobilePaymentLib.xcodeproj file from Authorize.Net SDK folder into Xcode under MyProject.
Error : (while compiling)
'MobileDeviceLoginRequest.h' file not found
// Here i can't access the header folder
4 ) So that i have tried to add the sdk into my project like a framework , then i got different error
Error : (while compiling)
ld: warning: directory not found for option '-L/Users/sathish/Documents/CompanyApps/TestApps/PaymentGateway/anet_ios_sdk-1.1.1/ANMobilePaymentLib'
// Here i can't find the ANMobilePaymentLib in Authorize.Net iOS SDK and where i can download LibANMobilePaymentLib.a
pls guide me to resolve this issue.