I use the following code to report key events and custom definitions.
Bundle bundle = new Bundle();
bundle.putString("CustomLog", "TEST" + System.currentTimeMillis());
FirebaseAnalytics.getInstance(getApplicationContext()).logEvent("MyCustom", bundle);
I tested the data reporting in November 2024 and successfully viewed the data in "Explorations". Recently, on February 7th, 2025, when I checked again, the following message was displayed:
I want to report the data again and then check it. After reporting dozens of data entries, I've waited for 24 hours, but I still can't view the data. Moreover, I've also noticed that I haven't been able to see the data of "key events in the last 30 minutes" all the time.
I hope to view the reported key event data in "Explorations".