Prior to play-services-ads 7.0.0, the cust_params field in our Ad Requests was empty. However, now, it has a value of "&cust_params=excl_cat"
PublisherAdRequest request = new PublisherAdRequest.Builder().addNetworkExtrasBundle(
AdMobAdapter.class, extrasBundle ).build()
In this case, the "extrasBundle" Bundle is empty. My understanding is that AdRequest.Builder() added an addCategoryExclusion method, in which case we could specify values for the "excl_cat" field.
However, my expectation would be that the "excl_cat" parameter should not be present unless it actually has values defined (as is the case in the iOS SDK). Is this expectation accurate?
We are not using the "addCategoryExclusion" method at all, so I would not expect that field to be present in our request.