Skip to main content
Known Participant
September 12, 2018
Question

how add beta-reports-active?

  • September 12, 2018
  • 1 reply
  • 891 views

<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>

This topic has been closed for replies.

1 reply

Amrita Gangwani
Adobe Employee
Adobe Employee
September 18, 2018

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!