I\'m trying to get logs with some service data with Crashlytics in my android application. But I don\'t see my logs in dashboard. I used this:
String myLog =
Instead of catching the exception and logging it, you can instead use RuntimeExceptions:
throw new RuntimeException("Test crash");
Android Studio will not require you to catch these, thus having the app terminate and upload the report immediately.