There is an automatically collected event called app_remove
in firebase analytics and I'm wondering if I can attach a custom parameter to that.
What I want to do is to track users who uninstalled my app. I found this of course but it won't work on Lollipop version and above.
So I'm wondering if something like this will work:
Bundle b = new Bundle();
b.putString("user_email", email);
// attach bundle to app_remove event
or perhaps I can set the userId
:
firebaseAnalytics.setUserId(email);