i have also imported HttpClientModule and also properly configure GoogleTagManagerService.
import { HttpClientModule, /* other http imports */ } from "@angular/common/http";
@NgModule({
imports: [
HttpClientModule,
]}),
providers: [
{ provide: 'googleTagManagerId', useValue: 'GTM-XXXXXXX' }
],
});
But i am still getting errors . i am using Google Tag Manager package and import every things properly . and now i clone the project in new system, so now i am getting this error
app.component.ts code
import { GoogleTagManagerService } from 'angular-google-tag-manager';
constructor(
private gtmService: GoogleTagManagerService
) {}
ngOnInit(): void {
this.router.events.subscribe((evt) => {
if (evt instanceof NavigationEnd) {
const gtmTag = {
event: 'page',
pageName: evt.url
};
this.gtmService.pushTag(gtmTag);
}
if (!(evt instanceof NavigationEnd)) {
return;
}
});
}
As you can see in an resolved issue from this package, you have to use an older version of this package for angular 8 (https://github.com/mzuccaroli/angular-google-tag-manager/issues/38)
npm i --save [email protected]