thoechtl

Results 6 comments of thoechtl

There is a `margin` attribute you can use with `AdMob.showBanner()`.

Setting `location: 'no'` fixes the issue.

@Sulorb You can simply provide a `nameOverride` param to fix the issue. This overrides the screen class name, which is not really useful in a Capacitor app anyway ... ```...

@mahnuh I have the same problem and tested `capacitor-plugin-app-tracking-transparency@next`, but the issue stays the same. The response of `await AppTrackingTransparency.requestPermission()` is not awaited, the Promise is resolved to early ......

@mahnuh I further investigated the issue and found a hint: https://stackoverflow.com/a/69373506/7558802 I fixed the issue by adding a timeout before calling `AppTrackingTransparency.requestPermission()`, although I'm also awaiting the `platform.ready()` event before....

Hi @mahnuh, a demo repo to reproduce the issue can be found here: https://github.com/thoechtl/capacitor-plugin-app-tracking-transparency-demo-app The issue exists if you request tracking permission right after geolocation permission: ``` const geoResponse =...