I want to see the Error of my uploaded application on google play store.It is having some issues and i want to debug that issue. Is it possible to debug that issue? Thanks in advance.
Asked
Active
Viewed 69 times
0
-
you can only see it if the apk is debuggable – H.T Apr 19 '16 at 07:31
-
Yes you can see Verbose just connect your device to the system and in Android Studio you can see the Log Trace – Rakshit Nawani Apr 19 '16 at 07:31
-
select `No Filter` you can see all of your device's log – Praveen Kumar Apr 19 '16 at 07:33
-
@VivekMishra nonsense. You see logs of apps that emits logs. – Marcin Orlowski Apr 19 '16 at 07:38
-
@MarcinOrlowski sorry I removed that but I read somewhere like that earlier – Vivek Mishra Apr 19 '16 at 07:49
-
@VivekMishra you may have proguard running for release mode with rules stripping `Log.*`, but if you do not have, then your release will be emiting to logcat normally. – Marcin Orlowski Apr 19 '16 at 08:00
-
@MarcinOrlowski after your previous comment I read about it and understands that if logs are written in release apk that can be seen – Vivek Mishra Apr 19 '16 at 08:02
2 Answers
0
You have To implement HockeyApp SDK this service allow you to track all crashes that happens to your application wherever it was on any device.
And when you want to deploy your app to play store you should set the attribute debbugable="false" in your <application>
tag in your manifest so nobody can trak your application logs.

Mr Lister
- 45,515
- 15
- 108
- 150

Mohammad Haidar
- 1,109
- 1
- 16
- 35
-
@Hider there is no crash. i just want to see the logs of deploy application on google play store. – Sundeep Badhotiya Apr 19 '16 at 07:50
-
@SundeepBadhotiya press on the link and read what this SDK can do, it has a feedback manager and you have to implement it to your code its not difficult they provide sample code, there is no straight way to achieve what are you trying to do and this is the proper way since this SDK is for reporting about everything and you can use it as you want. – Mohammad Haidar Apr 19 '16 at 07:54
-
@SundeepBadhotiya if this is not the answer for you so why did you down voted it? I will flag your question – Mohammad Haidar Apr 19 '16 at 08:09
-1
Add this in your Manifest android:debuggable="true"
inside the <application>
tag. by default android:debuggable
is false.

Umer
- 1,566
- 2
- 20
- 31