I have had an app rejected by Apple stating that I need to implement UIRequiredDeviceCapabilities in my info.plist due to my app requiring a camera flash. I und
UIRequiredDeviceCapabilities
Add this text to your app's Info.plist file:
<key>UIRequiredDeviceCapabilities</key> <array> <string>camera-flash</string> </array>
You only need a dictionary if some of the capability requirements need to be false.