iOS_审核被拒原因及解决办法汇总
2018-07-06 本文已影响22人
wahkim
集齐各种审核被拒原因召唤神龙
- Guideline 2.5.1 - Performance - Software Requirements
问题:出现私有API被拒
Guideline 2.5.1 - Performance - Software Requirements
Your app uses the "prefs:root=" non-public URL scheme, which is a private entity. The use of non-public APIs is not permitted on the App Store because it can lead to a poor user experience should these APIs change.
Continuing to use or conceal non-public APIs in future submissions of this app may result in the termination of your Apple Developer account, as well as removal of all associated apps from the App Store.
Next Steps
To resolve this issue, please revise your app to provide the associated functionality using public APIs or remove the functionality using the "prefs:root" or "App-Prefs:root" URL scheme.
解决办法:
1. 打开终端 cd 根目录
2. 键入 grep -r com.apple.springboard.lockcomplete . (注意后面的点)
hqLin:~ linhuaqin$ cd /Users/linhuaqin/Desktop/xxxx // 步骤1
hqLin:Smarthome2 linhuaqin$ grep -r com.apple.springboard.lockcomplete . // 步骤2 注意后面的点
Binary file ./.svn/pristine/b6/b693331d34121e81569ddef5d80d10c6d19e195c.svn-base matches
Binary file ./Smarthome2/Class/HyphenateSDK/lib/libHyphenateFullSDK.a matches // 查到libHyphenateFullSDK.a 存在私有api
hqLin:Smarthome2 linhuaqin$
// 更新libHyphenateFullSDK.a 问题就解决了