iOS iPhone 6 / 6 Plus Screen Size
#1
Could you guys please add support for the new iPhone 6 and 6 Plus screen size. I am running a iPhone 6 Plus and the resolution is showing 1136x640 but the iPhone 6 Plus is 1920x1080 (Landscape) But I think its really 2208x1242 via a screenshot size off the device.

Image
Reply
#2
I've managed to get XBMC to run in @2x mode on the iPhone 6 Plus but the iPhone 6 Plus is @3x mode.

Image
Reply
#3
https://github.com/xbmc/xbmc/pull/5390
Reply
#4
ipodtouchdude - please reply back on the pull request if it works or not
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#5
(2014-09-27, 17:48)Memphiz Wrote: ipodtouchdude - please reply back on the pull request if it works or not

I would love to test that build but I can't build it myself. I have followed the instructions in the README.ios but I can't get past section 3.1 of the instructions. I'm getting this error on the make section
Quote:touch .installed-iphoneos8.0_armv7-target
make: *** [target/.installed-iphoneos8.0_armv7-target] Error 2
Reply
#6
How did did you get xbmc onto your p6 then in the First place?
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#7
Compiling with xcode6 needs this pr - then pick the other one on Top

https://github.com/xbmc/xbmc/pull/5403
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#8
I re-codesigned the application and did plist modifications to get the app to work @2x mode. Going to try and compile it again with the xcode 6.0.1 and iOS 8 patches added to it.
Reply
#9
After building and installing the iPhone 6 version I get this on my iPhone 6 Plus.

Image

As you can see it is not useable at all. Unless I messed up the compiling.
Reply
#10
Can you try and resign this one instead?

http://mirrors.xbmc.org/test-builds/darw...e6-ios.deb

Iirc compiling xbmc against ios5 or later totally screws up the Orientation API (someone needs to fix this before jumping to a newer sdk Sad )
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#11
(2014-09-29, 08:34)Memphiz Wrote: Can you try and resign this one instead?

http://mirrors.xbmc.org/test-builds/darw...e6-ios.deb

Iirc compiling xbmc against ios5 or later totally screws up the Orientation API (someone needs to fix this before jumping to a newer sdk Sad )

It still runs in @2x mode and not @3x mode or 1080p mode.
Reply
#12
Looking at the changes in the pull request and the Apple documentation - any idea what might be missing? If not you need to wait until one of our devs buys the ip6plus...
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#13
Ahh i see - i forgot to hookup the new launchimages in the xcode project - will do after work and post a new testbuild...
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#14
Could you try this one?

http://mirrors.xbmc.org/test-builds/darw...e6-ios.deb
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much: click here
HowTo setup NFS for Kodi: NFS (wiki)
HowTo configure avahi (zeroconf): Avahi_Zeroconf (wiki)
READ THE IOS FAQ!: iOS FAQ (wiki)
Reply
#15
(2014-10-01, 08:35)Memphiz Wrote: Could you try this one?

http://mirrors.xbmc.org/test-builds/darw...e6-ios.deb

You need to insert this code into the info.plist to make XBMC use the Launch image.

Code:
<key>UILaunchImages</key>
<array>
    <dict>
        <key>UILaunchImageMinimumOSVersion</key>
        <string>8.0</string>
        <key>UILaunchImageName</key>
        <string>Default-667h</string>
        <key>UILaunchImageOrientation</key>
        <string>Portrait</string>
        <key>UILaunchImageSize</key>
        <string>{375, 667}</string>
    </dict>
    <dict>
        <key>UILaunchImageMinimumOSVersion</key>
        <string>8.0</string>
        <key>UILaunchImageName</key>
        <string>Default-736h</string>
        <key>UILaunchImageOrientation</key>
        <string>Portrait</string>
        <key>UILaunchImageSize</key>
        <string>{414, 736}</string>
    </dict>
</array>

Else apple recommend using a "Launch Screen.xib" for iPhone 6 and 6 Plus.

https://developer.apple.com/library/ios/...mages.html
Reply

Logout Mark Read Team Forum Stats Members Help
iPhone 6 / 6 Plus Screen Size0