Einzelnen Beitrag anzeigen

moe120

Registriert seit: 1. Okt 2012
Ort: Radeberg
34 Beiträge
 
Delphi XE6 Enterprise
 
#7

AW: App reagiert nicht auf Ausrichtungsänderung / Orientations

  Alt 30. Apr 2014, 10:45
habs mal probiert mit dem plistpatcher,
erster versuch gescheitert (also ohne fehlermeldung gleiches ergebnis wie vorher)
hab dann mal als 3. Parameter eine output.plist angegeben um zu sehen ob der Befehl überhaupt ausgeführt wird,

die sieht dann so aus:

Code:
<?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>CFBundleName</key>
    <string>vpTermine</string>
   <key>CFBundleDevelopmentRegion</key>
   <string>de</string>
   <key>CFBundleDisplayName</key>
   <string>vpTermine</string>
   <key>CFBundleIdentifier</key>
   <string>vpTermine</string>
   <key>CFBundleInfoDictionaryVersion</key>
   <string>6.0</string>
   <key>CFBundleVersion</key>
   <string>0.7.5</string>
   <key>CFBundlePackageType</key>
   <string>APPL</string>
   <key>CFBundleSignature</key>
   <string>????</string>
   <key>LSRequiresIPhoneOS</key>
   <string>true</string>
   <key>CFBundleAllowMixedLocalizations</key>
   <string>YES</string>
   <key>CFBundleExecutable</key>
   <string>vpTermine</string>
   <key>UIDeviceFamily</key>
   <array>
         <integer>1</integer>
         <integer>2</integer>
   </array>
   <key>CFBundleResourceSpecification</key>
   <string>ResourceRules.plist</string>
   <key>UISupportedInterfaceOrientations</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
   </array>
   <key>UISupportedInterfaceOrientations~ipad</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
   </array>
   <key>CFBundleShortVersionString</key>
   <string>0.7</string>
   <key>CFBundleIconFiles</key>
   <array>
   <string>57x57</string>
   <string>114x114</string>
   <string>FM_ApplicationIcon_72x72</string>
   <string>FM_ApplicationIcon_144x144</string>
   <string>60x60</string>
   <string>120x120</string>
   </array>
   <key>UIRequiredDeviceCapabilities</key>
   <array>
   <string>armv7</string>
   </array>
   <key>CFBundleSupportedPlatforms</key>
   <array>
   <string>iPhoneOS</string>
   </array>
   <key>CFBundleResourceSpecification</key>
   <string>ResourceRules.plist</string>
   <key>MinimumOSVersion</key>
   <string>6.0</string>

   <key>UISupportedInterfaceOrientations</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscape</string>
   </array>
   <key>UISupportedInterfaceOrientations~ipad</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscape</string>
   </array>   
</dict>
</plist>

bin mir bei der Syntax für das array nicht sicher.
Die include.plist sieht so aus:

Code:
<?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>UISupportedInterfaceOrientations</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscape</string>
   </array>
   <key>UISupportedInterfaceOrientations~ipad</key>
   <array>
         <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationLandscape</string>
   </array>   
</dict>
</plist>
  Mit Zitat antworten Zitat