How to search for any UIWebView component usage inside a current project?

后端 未结 3 859
执念已碎
执念已碎 2020-12-16 02:13

when submitting my latest build, Apple has response with this warning.

ITMS-90809: Deprecated API Usage - Apple will stop accepting submissions of app

3条回答
  •  暖寄归人
    2020-12-16 02:29

    Hey I tried searching in Xcode. Couple of the third party libraries used it. (FBSDK for example) I updated those libraries but that wasn't sufficient.

    On the next upload the scary email arrived again.

    Then I found this article: https://medium.com/@zivchen_42755/for-me-that-wasnt-enough-it-didn-t-found-all-of-them-thats-weird-something-to-do-with-pod-i-a068d55b7fab

    and in the comments someone mentioned grep being the medicine.

    So I tried grep -r UIWebView /Path/To/Project/*

    And it found a couple of the binary frameworks that also use UIWebView. (GoogleSignin, Crashlytics ...) I updated those too.

    On the next upload there was no scary email :D

提交回复
热议问题