Hi,
weiß jemand warum der folgende String zweimal in der info.plist-Datei auftaucht?
<key>LSMinimumSystemVersion</key>
<string>10.11.0</string>
....
<key>LSMinimumSystemVersion</key>
<string>10.9</string>
Die erste Info, habe ich so in der
IDE für das Projekt in den Version-Infos konfiguriert, aber diese wird dann fleißig überschrieben.
info.plist.TemplateOSX.xml sieht soweit korrekt aus:
Delphi-Quellcode:
<?
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>
<%VersionInfoPListKeys%>
<%ExtraInfoPListKeys%>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>openstreetmap.org</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<false/>
<key>NSExceptionRequiresForwardSecrecy</key>
<true/>
<key>NSExceptionMinimumTLSVersion</key>
<
string>TLSv1.2</
string>
<key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<true/>
<key>NSThirdPartyExceptionMinimumTLSVersion</key>
<
string>TLSv1.2</
string>
<key>NSRequiresCertificateTransparency</key>
<false/>
</dict>
</dict>
</dict>
</dict>
</plist>
Grüße, Philipp