-
1. Re: iPhone 6 DPI Issue?
Graham Smith Oct 20, 2014 10:11 AM (in response to irocman1987)Hi there,
there are still known issues with dpi etc on the iPhone 6 plus :-
things appears ok on some simulators but apparently real devices still have the issue..
things should be ok for the iPhone 6 though, and your default images look ok .
from release notes AIR 15.0.0.328 :-
[iPhone 6 Plus] Wrong screen size and dpi is returned through the runtime APIs.
[iPhone 6 Plus] iPad Launch image appears on iPhone 6 Plus in standard display mode, when both iPhone and iPad launch images are
packaged together
-
2. Re: iPhone 6 DPI Issue?
irocman1987 Oct 23, 2014 5:49 AM (in response to Graham Smith)Thanks Graham,
I created a basic Flex Mobile project and saw that the DPI was correct on my iPhone 6, then figured out that my project had a utility class called "RuntimeDPIProvider" I had used this a year ago to set up retina display iPads/iPhones. Removing this class did the trick.
//Sets up 320 DPI for iPads and iPhones for retina display
public class CustomRuntimeDPIProvider extends RuntimeDPIProvider
{
//More Code in here
}
While I can't test on an IPhone 6 plus device to comment on the current AIR issues - Both iPhones seem to emulate fine in the iOS simulator.

