AXad
AXad

Reputation: 61

network-authentication in info.plist

I am facing this issue when uploading build to TestFlight. I have Entitlement from apple in my development portal. Please help

Missing Code Signing Entitlement. Use of the 'network-authentication' background mode in 'Payload/FreeWifive.app/FreeWifive' requires either the 'com.apple.developer.CaptiveNetworkPlugin' or 'com.apple.developer.networking.HotspotHelper' entitlement.

Upvotes: 1

Views: 1636

Answers (1)

Andrew Bao
Andrew Bao

Reputation: 36

Adding this to your entitlements file should give you the proper entitlements:

<key>com.apple.developer.networking.HotspotHelper</key>
<true/>

Upvotes: 2

Related Questions