Dylan
Dylan
You need to make sure to call requestinfoupdate before getting gdprApplies.
We experience the same in react-native-google-mobile-ads: https://github.com/invertase/react-native-google-mobile-ads/issues/532
I experience the concatenation since upgrading to react-native 0.73.2. After every pod install the following lines are added to my project: ``` " ${PODS_CONFIGURATION_BUILD_DIR}/ReactCommon/ReactCommon.framework/Headers", " ${PODS_CONFIGURATION_BUILD_DIR}/React-Fabric/React_Fabric.framework/Headers/react/renderer/components/view/platform/cxx", " ${PODS_CONFIGURATION_BUILD_DIR}/React-graphics/React_graphics.framework/Headers", ```
Yes there are repeated. It seems that `pod deintegrate` fixed it! Thanks!
@AdamMoffitt I was struggling with this too, but just found you can put a "height" prop on item: ``
Temporary hack: To prevent the layout from jumping, I currently calculate the screens height using: ``` const {height: WINDOW_HEIGHT} = Dimensions.get('window'); const headerHeight = useHeaderHeight(); const bottomTabBarHeight = useBottomTabBarHeight(); const...
Still an issue in 2024.
@anthonytietjen I had the same problem and just submitted a pull request to fix it: https://github.com/kadiks/react-native-itunes/pull/26
@lotz to fix this, is it enough to call `loadRequest`(objc)/`load`(swift) upon foregrounding or do we need to create a complete new instance?
Haven't noticed this in our demo app. On the Unity side there seems to be a destroy method: https://developers.google.com/admob/unity/banner#destroy_the_banner_view What clean up method are we missing? https://developers.google.com/admob/ios/banner https://developers.google.com/admob/android/banner