Philipp Alker
Philipp Alker
**Update** The error seems to only be occurring on Chromium based Browsers (Tested in Chrome and Android WebView).
@huntonas Ok, my first hotfix was to alter this: ``` if (this.payPalButtonContainerElem) { while (this.payPalButtonContainerElem.nativeElement.firstChild) { this.payPalButtonContainerElem.nativeElement.removeChild(this.payPalButtonContainerElem.nativeElement.firstChild); } } ``` into this : ``` if (this.payPalButtonContainerElem) { try{ while (this.payPalButtonContainerElem.nativeElement.firstChild)...
Same here trying to use the scope for "https://www.googleapis.com/auth/androidmanagement" implemented like this `const client = new google.auth.GoogleAuth({ credentials: keys, scopes: ['https://www.googleapis.com/auth/androidmanagement'], })`
solved it: somehow the service endpoint has changed ( which is now https://androidmanagement.googleapis.com ). So if anybody else stumbles upon this, check the API Docs for the current service endpoint