0

Can anyone explain this odd padding that exists outside the entire webview?

Our app has been denied by Apple because of this issue.

I have Googled it for days with no success.

enter image description here

MonOve
  • 1,091
  • 13
  • 34
  • That looks to me like an iPhone app running on an iPad. Do you support the iPad? – ian Jan 25 '16 at 15:22
  • It is. We have disabled iPad, but here's from Apple: We noticed that your app did not run at iPhone resolution when reviewed on iPad running iOS 8.3, which is a violation of the App Store Review Guidelines. Please revise your app to ensure it runs at iPhone resolution on iPad. – MonOve Jan 25 '16 at 15:55
  • Maybe this question can help: http://stackoverflow.com/questions/10527781/make-an-iphone-specific-app-work-on-ipad-to-meet-apple-requirements – ian Jan 26 '16 at 08:20

1 Answers1

1

Try setting this in your config.xml:

<platform name="ios">
    <preference name="target-device" value="universal" />
</platform>

Universal is the default value, so make sure you are not setting target-device to something else ;)

ian
  • 695
  • 2
  • 9
  • 19