App crashes after downloading from Play Store?

2019-07-22 04:32发布

My app works fine in all devices before uploading it to play store. Now i have upload new version.

android:versionCode="7"
android:versionName="6.2"

Please tell me how can i see logcat after downloading my app from Play Store. Is it possible to detect or get error . How can i resolve this issue.

One problem i found while building apk was.

I have enabled proguard. now i delete that file proguard-project.txt . then eclipse let me create an apk . Now tell me how to resolve this issue.

My half problem will be solved if someone tell me how to see logcat of an app after downloading it from eclipse.

Thanks in Advance.

2条回答
太酷不给撩
2楼-- · 2019-07-22 04:56

When app crashes you can see two buttons, force stop / OK and report. Click on report button and there you will find various tabs. In one of the tabs you will get stacktrace.

查看更多
▲ chillily
3楼-- · 2019-07-22 05:05

To see logs just use 'adb' tool. Connect device, type in a console:

adb logcat

And launch your app.

And I would recommend you to use some service which logs app crashes and exceptions. For instance https://crashlytics.com

查看更多
登录 后发表回答