0

I'm building an iOS app using as3 and air to package the app onto my iPhone 6. My issue is that I get a black bar above and below the app, the app itself is not going fullscreen. The stage screen is set to the iPhone 6 screen dimensions.

I have tried by adding the following launch images into the app folder; Default-667h@2x.png, Default-568h@2.png, and Default@2x.png. In the AIR for iOS Settings under general, I've added them to the 'Included files' section but the bars are still there. Dropbox link to image.

Does anyone have any fixes for this?

3 Answers3

2

iPhone 6 requires the Default image of Default-375w-667h@2x.png to be included. (and iPhone 6+ needs Default-414w-736h@3x.png).

This is a handy web page to bookmark which lists file sizes and names. http://blog.tomasmahrik.com/list-of-properties-sizes-for-application-icons-launch-images-screenshots-video-previews-for-ios-air-apps/

crooksy88
  • 3,849
  • 1
  • 24
  • 30
0

You should set your apps to not scale (looks like yours is scale to fit) and align top left:

stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
moot
  • 653
  • 5
  • 13
0

Resently had the same problem and splash screens didn't help. For me solution was only this How do I create launch images for iPhone 6 / 6 Plus Landscape Only Apps?

Community
  • 1
  • 1
Dmitry Malugin
  • 882
  • 1
  • 7
  • 25