1. Legal - Privacy - Data Collection and Storage。
We noticed that your app requests the user’s consent to access their location but does not clarify the use of the location in the applicable purpose string.
被拒原因:使用位置权限,没有说明使用用途具体是什么。
修改如下:
<key>NSLocationWhenInUseUsageDescription</key>
<string>为您提供周边的服务推荐时需要获取定位信息</string>
复制代码
注意:如果项目中没有使用定位功能,全局搜索:CLLocation 或者 CLLocationManager
2. Missing Purpose String in Info.plist
Your app's code references one or more APIs that access sensitive user data. The app's Info.plist file should contain a
NSAppleMusicUsageDescription
key with a user-facing purpose string explaining clearly and completely why your app needs the data. Starting Spring 2019, all apps submitted to the App Store that access user data are required to include a purpose string. If you're using external libraries or SDKs, they may reference APIs that require a purpose string. While your app might not use these APIs, a purpose string is still required. You can contact the developer of the library or SDK and request they release a version of their code that doesn't contain the APIs. Learn more (
developer.apple.com/documentati…
).
<key>NSAppleMusicUsageDescription</key>
<string>需要访问Apple Music媒体库</string>
复制代码