We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have Info.plist located in platform folder of the plugin: SimpleBackgroundHttp/node_modules/nativescript-background-http/platforms/ios/Info.plist
Content of Info.plist is:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> </dict> </dict> </plist>
When build iOS for first time everything is ok, but when build second time final plist looks like this:
<key>NSAppTransportSecurity</key> <dict> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSAllowsArbitraryLoads</key> <true/> <key>NSAllowsArbitraryLoads</key> <true/> </dict> <key>NSAppTransportSecurity</key> <key>NSAppTransportSecurity</key> <key>NSAppTransportSecurity</key>
It can be reproduced with nativescript-background-http with following steps:
Result is:
>> ** BUILD FAILED ** >> >> >> The following build commands failed: >> ProcessInfoPlistFile build/emulator/SimpleBackgroundHttp.app/Info.plist SimpleBackgroundHttp/SimpleBackgroundHttp-Info.plist >> (1 failure) >> Command xcodebuild failed with exit code 65
The text was updated successfully, but these errors were encountered:
The problem happens only when the source code of the plugin that contains Info.plist file is modified.
Sorry, something went wrong.
e010223
No branches or pull requests
I have Info.plist located in platform folder of the plugin:
SimpleBackgroundHttp/node_modules/nativescript-background-http/platforms/ios/Info.plist
Content of Info.plist is:
When build iOS for first time everything is ok, but when build second time final plist looks like this:
It can be reproduced with nativescript-background-http with following steps:
Result is:
The text was updated successfully, but these errors were encountered: