Google Analytics by including analytics.js

To integrate my app with Google Analytics, I would like to add an analytics.js library to the app.
I have referred to https://developers.google.com/analytics/devguides/collection/analyticsjs/ and tried to use the codings provided.

<!-- Google Analytics -->

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview');

<!-- End Google Analytics —>

But seems it doesn’t work in fuse since it’s for website.
Any suggested idea could solve it? Thank you.

Unfortunately, since this library modifies the web DOM, it will not work with Fuse. You’ll likely have to wrap the native API’s in order to use this feature.