Hello! As I know on new iOS devices without a physical home button implemented on-screen swipe home indicator as a bar at the bottom of the screen. And it looks absolutely inappropriate on top of the in-game interface... (((
It can be removed by the user in an OS setting, but it's much better to hide it automatically. I googled that question and found that this can be done by adding some code (in xcode?) like:
override func prefersHomeIndicatorAutoHidden() -> Bool {
return true
}
But how can we did this in Construct? Or on export phase or building app phase in xcode somewhere...? Thanks!