I'm trying to build my app with xcode but i faced " non key inside dict line 52> Whats the problem with line 52. I cant find any solution. Thanks for your time.
Heres my xml lines.
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string></string>
</array>
</key>
CodePudding user response:
You should remove the last reference to </key>
. It's going to be something like this:
<key>BGTaskSchedulerPermittedIdentifiers</key>
<array>
<string></string>
</array>