0

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.

Sundeep Badhotiya
  • 810
  • 2
  • 9
  • 14

2 Answers2

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