Admob targeting addNetworkExtrasBundle
complete
Fábio Pereira
Admob allows to send custom property values for direct campaign delivery, for example a weather app wants to deliver a banner when the temperature is below _X_ degrees.
Bundle extras = new Bundle();
extras.putInteger("temperature_now", 9);
AdRequest request = new AdRequest.Builder() .addNetworkExtrasBundle(AdMobAdapter.class, extras).build();
Is there any specific reason why the functionality of sending custom fields for direct campaigns has not been implemented?
Elliot Hesp
marked this post as
complete
Complete in v6. Please see https://invertase.io/oss/react-native-firebase/v6/admob/reference/requestoptions#networkExtras for more information
Elliot Hesp
marked this post as
in progress
Have implemented this for v6. @Fábio Pereira - where do you see the output of adding that to the request out of interest? I'd like to test it.