Apple store rejected iOS application due to background modes

穿精又带淫゛_ 提交于 2019-12-04 21:07:50

For 2.16 As per, App Store Review Guidelines I can say that you are using Location Service or any another service in background which is not consistently used in app. So why to put load in background process? Decide your flow and based on that use those services on pro-active basis. Do not run or use any background services. Sometime background process stops automatically by malfunctioning of other app or memory related issues. e.g. Let's say I want to use GPS for location based service. Why should i invoke the service call until I want Longitude and Latitude by writing it in background services? I am using it whenever I need the GPS data.

For 17.5, I guess you have uploaded Privacy Policy so it's fine. So,make the change accordingly and upload the build again. Best of luck.

Need to Specify the Key in plist for the Backgroundmode. Example If you are tracking users location in foreground and used backgroundmode in capabilities then your app may get rejected in binary testing. Make sure that you use Both the functionalities and Plist key for the background which you are using.

I've thoroughly reviewed the reason for 2.16 mentioned above - which looks similar to what we had for one of our apps.

In our scenario - it was meta data rejected. We simply added this line at the end of the description. Disclaimer: Continued use of GPS running in the background can dramatically decrease battery life.

If in you case - if you were asked to upload a new binary. Along with above line also follow the above suggestions for modifying UIBackgroundModes and ensure how that will effect your app feature.

For 17.5 - app should be accessible with very limited information to register - instead of lengthy fields - and more over it should clearly mention which field is mandatory and optional. Please mention why you need such information in privacy policy. Also review some sample privacy policies of other apps what they have included.

Hope this answer helps someone. Happy coding.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!