Pavel Bely
Pavel Bely
@ajithes111 you need to restart the app for RTL aligning to take place. You can easily do that with https://github.com/avishayil/react-native-restart
I fixed it this way - forked the repo and commented out error processing code: **react-native-admob/ios/RNGADBannerView.m:** ``` /// Tells the delegate an ad request failed. - (void)adView:(__unused GADBannerView *)adView didFailToReceiveAdWithError:(GADRequestError...
@sdb1228 you're probably right, it might just swallow the error and simply not display any ad. But in my case that was quick dirty fix _specifically_ for iOS. For Android...
Specifying path to Chromium bin in `settings.py` helped avoiding downloading it. ``` PYPPETEER_LAUNCH_OPTIONS = { 'executablePath': '/path/to/headless-chromium' } ```