Hello,
Im trying to position the banner above the home indicator on the bottom of the iPhone X in portrait, im using the safe area but the banner does not appear where expected. I found that dividing the safe area maxY by 3 gets it in the right positon not sure why. Landscape appears where expected.
Using Unity 2017.2 , Xcode 9.2 beta , iPhone X 11.2 simulator, latest unity admob plugin
if (Device.generation == DeviceGeneration.iPhoneX) {
bannerView = new BannerView (adUnitId, CurrentBannerSize, 0, (int)Screen.safeArea.yMax / 3 - BannerHeight / 3);
} else {
bannerView = new BannerView (adUnitId, CurrentBannerSize,AdPosition.Bottom);
}