I have an app that was last updated awhile ago that needs to be updated to run on the current Play Store. However, Google Analytics V2 is no longer available and this project depends on it. What is the recommended path to upgrade this? Play Store analytics? Firebase? Please let me know if anyone has experience in this.
Example code of something the project uses: `
EasyTracker.getInstance().setContext(getActivity());
Tracker tracker = EasyTracker.getTracker();
if (tracker != null)
tracker.sendView("Map");
super.onStart();
`
I have tried importing different modules and trying to find the correct package but I have not had any luck.