Is it possible to log a string from native C++ Android app and see it in Google Play Console?
For example, UWP event logger allows an app to log arbitrary strings (event names) and see them in MS Developer Console using the following code:
Microsoft::Services::Store::Engagement::StoreServicesCustomEventLogger ^ eventLogger = Microsoft::Services::Store::Engagement::StoreServicesCustomEventLogger::GetDefault();
eventLogger->Log("the user pressed OK button");
is there something like this on Android?
There is
__android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "My Log", 1);
but it prints logs locally. I am asking about reporting to Google Play Console. It is not for debugging, but for collecting the statistics on what the user do with the app.