Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I write android application in eclipse and i want to catch the crashes
What the best way to get the crash logs for android app ?
I read about acra library but i dont use gardle its must for this library ?
and if its the best way have i add it to my app?
I try to use crash logs application from google play it was good but the log wasnt much clear maybe there is another application for this ?
some one can help me?
Best way for catching crashes for published apps is Crashlytics
Also you can use Crashes & ANRs in Google Play Developer Console, but it shows crashes only if users sent them
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last year.
Improve this question
I'm developing a mobile app and i have to add a "report bug" feature. User can write something wrong he notices in the app and when he pushes, we collect the smartphone metatadata, app version, etc...So we have a json report ready to be send.
For the moment we don't know where store this report data, which tool to use ? We are using aws cloud, and are looking over internet to know if aws provide such bug tracker tool.
If not what tool could we use to achieve this use case ?
Thanks in advance.
Finally i find a list of tools used to track user bugs and report:
https://instabug.com/
https://raygun.com/languages/android
https://raygun.com/languages/android
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
is there any website to get online users now in my app or any good idea?
I tried to using onStart and onDestory but do not work well Are there other ideas
Best way is to use Socket for more accurate data
This way your server-side and mobile app can maintain real-time comms, which can be used in more than just tracking who is online you can even track in which activity they users are.
if you want something with less code you can use fabric KPI which can track alot more things like content view - Search - share -Rated content - etc.
NOTE
google bought fabric and right now they are working on migrating all of fabric features to their firebase service.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I know this has been asked before. I can Google.
The reason I'm raising this question again is because the last best voted answer is from like 7 years ago and I wonder if anything new/better has emerged.
So, the question is - what is the best practice to get crash logs from Android apps deployed in the field?
fabric was acquired by google
The most powerful, yet lightest weight crash reporting solution.
Fabric for Android Studio there is plugin in use that and it will automatically configure Crashlytics
.
There're many websites and services targeting crash reports.
I use Fabric because it's powerful and easy to deploy. It also provides analytics.
Firebase Crash Report and Crashlytics also do the job. However, simply using their crash report is not a good choice. They need several permissions(more than Internet) and play services(probable?). Only use it when you're also using Firebase Database, Auth....
Besides, you can create your own crash report tool with a fresh start or using libraries.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for possible ways on how to trap or catch the run time errors of my application. I want to send my apk to my friends for them to test but when the application gets a run time error, I could not get the error message.
Ive already look in the net and I found some code set up but If there is already an available library for this, it would be very helpful.
Thanks guys
I found a helpful library called ACRA(Application Crash Report for Android). https://github.com/ACRA/acra .It will send an email or crash report and its really easy to set up.
Thanks #Giru Bhai for the link
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there a tool that does android remote logging for Android apps, kinda like Testflight's for IOs ?
I found Deploy Gate very helpful for me.
You can do remote loggin and also trac application launches, crash reports.
Also, TestFlight is just about to launch support for Android: https://testflightapp.com/android/ so you might want to sign up to be informed when they do.
I've used ACRA in my projects with great success. You can find that at: http://acra.ch/ It works great when used in the debugging process, but I remove it before publishing.
It can be configured to automatically send a report on a crash, if the app enters a particular state, via a trigger (like a button a user could press) or what have you. For my purposes, I usually have it trigger on a crash, and I add an option to the menu to send a Force Debug Report if the tester feels like the app is doing something odd, but isn't crashing.