curly
Junior Member
Posts: 16
|
Post by curly on Jul 21, 2019 22:17:53 GMT
Hi All,
I got the following rejection from App Store: -------------------------------------------------- Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requests the user’s consent to access their camera but does not clarify the use of the camera in the applicable purpose string.
Next Steps
Please revise the relevant purpose string in your app’s Info.plist file to specify why the app is requesting access to the user's camera. You can modify your app's Info.plist file using the property list editor in Xcode. --------------------------------------------------
I am using Rhodes 7.1.0.beta1.
How can I specify that the applicable purpose string is set correctly in the Info.plist file?
Thanks a lot in advance for any help!
|
|
|
Post by Dmitry Soldatenkov on Jul 22, 2019 11:29:14 GMT
Hi, Replace dummy string in Info.plist (NSCameraUsageDescription) to string with explanation of why your application need access to camera. See - developer.apple.com/design/human-interface-guidelines/ios/app-architecture/requesting-permission/You can modify it manually in XCode or directly in Info.plist or add to your build.yml commandsto modify it into "iphone" section(replace "_" to space): iphone: __info_plist_data: ____NSCameraUsageDescription: "application send photos with defects to server bla bla bla - this is just example of text!"
|
|
curly
Junior Member
Posts: 16
|
Post by curly on Jul 26, 2019 8:37:48 GMT
Thanks a lot, the additions to build.yml worked out perfectly!
|
|