You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by GitBox <gi...@apache.org> on 2020/06/12 22:57:33 UTC

[GitHub] [cordova-ios] mosabab edited a comment on issue #891: App rejected by Apple: App does not clarify the use of Motion Sensor in the applicable purpose string

mosabab edited a comment on issue #891:
URL: https://github.com/apache/cordova-ios/issues/891#issuecomment-643513847


   You need to clarify to users why you use the camera, this can be done by adding the reasons in this way:
   `<edit-config target="NSCameraUsageDescription" file="*-Info.plist" mode="merge">
       <string>need camera access to take pictures</string>
   </edit-config>
   <edit-config target="NSPhotoLibraryUsageDescription" file="*-Info.plist" mode="merge">
       <string>need photo library access to get pictures from there</string>
   </edit-config>
   <edit-config target="NSLocationWhenInUseUsageDescription" file="*-Info.plist" mode="merge">
       <string>need location access to find things nearby</string>
   </edit-config>
   <edit-config target="NSPhotoLibraryAddUsageDescription" file="*-Info.plist" mode="merge">
       <string>need photo library access to save pictures there</string>
   </edit-config>`
   
    you can refer to this:
   https://github.com/apache/cordova-plugin-camera#ios-quirks


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org