IOS APP赚钱全过程(五):APP订阅的审核被拒绝了!总结被拒绝的3个原因.
Hi,我是蓝莓,我提交给APP的订阅审核被拒绝了。提交的项目被拒。3.1.2 Business: Payments - Subscriptions
The submission offers auto-renewable subscriptions but does not include a functional link to the Terms of Use (EULA) in the app's metadata.If you are using the standard Apple Terms of Use (EULA), include a link to the Terms of Use in the App Description. If you are using a custom EULA, add it in App Store Connect.
该应用提交提供了自动续订服务,但未在应用的元数据中包含指向最终用户许可协议 (EULA) 的有效链接。如果您使用的是标准的 Apple 最终用户许可协议 (EULA),请在应用描述中添加指向该协议的链接。如果您使用的是自定义 EULA,请在 App Store Connect 中添加。
在描述里面添加:Apple‑标准 EULA(苹果官网那一条链接)https://www.apple.com/legal/internet-services/itunes/appstore/dev/stdeula/
End‑User License Agreement (EULA):https://www.apple.com/legal/internet-services/itunes/appstore/dev/stdeula/
Guideline 4.2.2 - Design - Minimum Functionality
Info.plist中声明的功能,但是和实际使用功能不一样。
是app需要申请权限没有在info.plist文件中做说明。或者说明文案有误,如NSPhotoLibraryUsageDescription是相册的读取权限描述,却写成了App因为保存图片需要访问您的相册,这种情况也是会被拒绝的。解决方案:将相应的权限描述进行调整,简单说明权限使用原因。常见的权限key:NSCameraUsageDescription(摄像头)NSLocationAlwaysUsageDescription(后台运行访问位置)NSLocationWhenInUseUsageDescription (运行期间访问位置)NSMicrophoneUsageDescription (麦克风)NSPhotoLibraryAddUsageDescription (相册-写)NSPhotoLibraryUsageDescription (相册-读)