skip to Main Content

I was building an iOS app and on a specific build version I added PayPal pod. Then when I submitted that app for test-flight, I got a UIWebview API Deprecation message

ITMS – 90809

I am using pod ‘PayPal-iOS-SDK’ for paypal integration

So what can I do to resolve this, and will it create any problem for successful app submission?

enter image description here

2

Answers


  1. It appears you are using a deprecated PayPal mobile SDK that is no longer supported for new integrations

    If you need a native SDK, PayPal Express Checkout via the Braintree Mobile SDK is supported

    Login or Signup to reply.
  2. In the PayPal Website, they were saying to Use Xcode 7+ and iOS 9+ Base SDK.

    In Apple documents https://developer.apple.com/documentation/uikit/uiwebview you can see that, its deprecated with iOS 12.

    So Intimate them about this.
    With the documentation of Paypal in the see also area there is a link to https://github.com/braintree/braintree_ios/tree/master/BraintreePayPal. While checking its showing recently updated, please check the same and try to integrate it.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search