DEV Community

Discussion on: 5 things learned from launching my first app and getting my first 20 users

Collapse
 
jordienr profile image
Jordi Enric

Thank you! I will also change to a privacy first analytics tool soon so I don’t have to show users the cookie notification. I will do the changes you said right now. Thanks for your comment πŸ‘

Collapse
 
alexanderjanke profile image
Alex Janke

Even if you use a different tool you still have to show a notification. Let me phrase it in pseudo-code:
if (dataCollection.enabled) displayCookieBanner()

You got 3 options:

  • Display the banner, link to your policy and explain what data you collect
  • Reject access to all users from the EU
  • Don't collect any data

I know it's annoying as hell to implement that over and over again but unfortunately, it's required.