BABU K
BABU K

Reputation: 917

How to fix the issue if app is crashed in android?

I have developed and put an android application in Google Play store.

Someone inform me that the app is crashing while doing something in application.

As a application developer,

  1. How to find the problem and fix it in android?

  2. Is there any tool or framework to debug the crashed app in android?

Upvotes: 1

Views: 721

Answers (2)

Jayaprakash Marshal
Jayaprakash Marshal

Reputation: 250

ACRA is a right choice for you to analyze the crash report. Please refer the following link to implement in your project.

https://github.com/ACRA/acra

And also, You can find the crash report in your developer console if the the user has sent the crash report while force closing of the application.

Please ensure that you have not enabled the proguard. if you have enabled proguard, try decode the lines using the following link

http://developer.android.com/tools/help/proguard.html#decoding

Upvotes: 2

Roadblock
Roadblock

Reputation: 2071

There are many sdks out there which can be incorporated in your app.

You can use 1. crashlytics 2. localytics 3. crittercism

Its always a best practice to include some analytics tools in your android application to know where users are spending a lot of their time. I personally like flurry Analytics.

Since you have already uploaded the apk you should check it out in the google play developer console. Even google will provide the crash data, and it is the only resource you have.

As far as fixing the application goes you can do it only by uploading a new apk and asking the users to update the app.

Upvotes: 3

Related Questions