I want to use crash reporting tool for my application but i don't have budget. Can any one have idea of any open source crash reporting tool except crashlytics.
Asked
Active
Viewed 1,095 times
-2
-
Is there any tools availabe which i can use in my application and publish in playstore. – Durgesh May 26 '15 at 05:08
-
If you are gonna upload your appliocation on playstore then why are you adding any crash reporting tool. Yow can get your crash reports on developer console. – Ankii Rawat May 26 '15 at 05:22
-
more detailed answer on http://stackoverflow.com/questions/601503/how-do-i-obtain-crash-data-from-my-android-application – Durgesh May 27 '15 at 06:03
1 Answers
0
The best one is Splunk Api.Download the splunk-mint.jar and place it in your libs
folder.The just added the following code before setContentView()
within onCreate()
:
Mint.initAndStartSession(MainActivity.this, "Your api key");
You will able to see the entire log-cat/crash report in the splunk website.

kgandroid
- 5,507
- 5
- 39
- 69
-
I have to use this code in all the component available in my app or only in activity. – Durgesh May 26 '15 at 05:22
-