Copy link to clipboard
Copied
<InfoAdditions><![CDATA[<key>UIStatusBarStyle</key>
<string>UIStatusBarStyleBlackOpaque</string>
<key>UIRequiresPersistentWiFi</key>
<string>NO</string>
<key>UIApplicationExitsOnSuspend</key>
<false />
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true />
</dict>
<key>beta-reports-active</key>
<true/>
<key>UIDeviceFamily</key>
<array>
<string>1</string>
<string>2</string>
</array>
<key>MinimumOSVersion</key>
<string>8.0</string>]]></InfoAdditions>
Copy link to clipboard
Copied
Hi,
The tag beta-reports-active is automatically added for the applications packaged for upload on Apple app store, as required by the App Store. For any other target type, this can be added by specifying the tag under the <Entitlements> tag in the <iPhone> tag using the following format.
<iPhone>
<Entitlements>
<![CDATA[
<key>beta-reports-active</key>
<true/>
]]>
</Entitlements>
</iPhone>
Thanks!