Can't Repro
Status Update
Comments
st...@gmail.com <st...@gmail.com> #2
Information redacted by Android Beta Feedback.
ch...@gmail.com <ch...@gmail.com> #3
Thank you for reporting this issue. We’ve shared this with our product and engineering teams and will continue to provide updates as more information becomes available.
mj...@google.com <mj...@google.com>
na...@google.com <na...@google.com> #4
- Build Number: google/oriole_beta/oriole:UpsideDownCake/UPB1.230309.014/9890577:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Same problem on beta 1. Re-registering fingerprints doesn't help.
Debugging information
Google Play services
com.google.android.gms
Version 231312044 (23.13.12 (190400-519946965))
System App (Updated)
Android System WebView
com.google.android.webview
Version 561504834 (112.0.5615.48)
System App (Updated)
Network operator: One NZ
SIM operator: vodafone NZ
Filed by Android Beta Feedback. Version (Updated): 2.33-betterbug.external_20230301_RC01 (DOGFOOD)
To learn more about our feedback process, please visithttps://developer.android.com/preview/feedback#feedback-app .
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
Same problem on beta 1. Re-registering fingerprints doesn't help.
Debugging information
Google Play services
com.google.android.gms
Version 231312044 (23.13.12 (190400-519946965))
System App (Updated)
Android System WebView
com.google.android.webview
Version 561504834 (112.0.5615.48)
System App (Updated)
Network operator: One NZ
SIM operator: vodafone NZ
Filed by Android Beta Feedback. Version (Updated): 2.33-betterbug.external_20230301_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
ko...@gmail.com <ko...@gmail.com> #5
Information redacted by Android Beta Feedback.
Description
Loading of
Expected Behavior:
analytics.js shouldn't pollute global namespace with a variable that is not, at least, prefixed with 'ga' or 'google'.
Usage of 'ga' or 'google' prefix is already being done with other variables, such as 'gaData', 'gaGlobal', 'gaplugins', 'google_tag_data', 'GoogleAnalyticsObject'
Steps to Reproduce:
1. Add JavaScript tracking snippet to a simple index.html
<!-- Google Analytics -->
<script>
(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','
ga('create', 'UA-XXXXX-Y', 'auto');
ga('send', 'pageview');
</script>
<!-- End Google Analytics -->
2. Open index.html with a browser
3. Open the DevTools Console
4. Write `
I added some screenshots that may help you to find where this assignment happens inside analytics.js and a screenshot from my DevTools Console.