Hi, I use Visa checkout in my application, Everything works fine in sandbox mode. When i connect to production with production key am getting error like
** VisaCheckoutSDK Configuration Error **
Debug mode is not supported for production environments. Visa Checkout will not be able to launch.
And my Visabutton is showing lock icon and disabled, I also tried in Testflight build having same behaviour. Please have a look on my code. Is there any thing i need to do more for getit working.
VisaProfile * profile = [[VisaProfile alloc] initWithEnvironment:VisaEnvironmentProduction apiKey:vcAKey profileName:vcPName]; profile.datalevel = VisaDataLevelFull; profile.displayName = @"Talabat"; [profile acceptedCardBrands: @[@(VisaCardBrandVisa), @(VisaCardBrandMastercard)]]; [VisaCheckoutSDK configureWithProfile:profile result:nil];
Solved! Go to Solution
Thank you @ricardo , now working fine.