Posts under category Google

I have added the gtag like following

<!-- Global site tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-189297876-1"></script> <script>   window.dataLayer = window.dataLayer || [];   function gtag(){dataLayer.push(arguments);}   gtag('js', new Date());   gtag('config', 'UA-xxxxxxxxx-x');   gtag('config', 'G-xxxxxxxxxx');   gtag('config', 'AW-xxxxxxxxx'); </script> 

Here I use the Google Analytics, the AdWords Conversion and the Global-ID.

When I check it with the Google Tag Assistant Plugin of Chrome, I get

I don't know, if this is a problem (the Message "Multiple installations of Global site tag (gtag.js) detected"). Is it only there one time.

Has anyone else had any issues with importing downstream conversions from Branch to Google specifically with iOS?

While we have been able to import basic conversions (i.e. first opens) across iOS and Android, Google Ads only allows us to import android custom conversions and NOT iOS despite both conversions firing from the same event (there isn't even an option to import these iOS conversions in Google). Anyone know of any possible solutions?

We've tried refreshing Link IDs, reauthenticating, and creating other conversions but we continue to run into the same issue of iOS conversions not being passed back into Google.

I'm not sure what to put in the withCondition to get all such videoAds.

var videoAds = AdsApp                 .videoAds()                 .withCondition('????')                                     .get(); while (videoAds.hasNext()) {     var videoAd = videoAds.next();     data.push([         videoAd.getVideoCampaign().getId(),         videoAd.getVideoCampaign().getName(),         videoAd.getVideoAdGroup().getId(),         videoAd.getVideoAdGroup().getName(),         videoAd.getId(),         videoAd.getName(),     ]); }