Questions tagged [android-debug]

The Android SDK provides most of the tools that you need to debug your applications. This tag covers debugging concerns when developing Android applications.

The Android SDK provides most of the tools that you need to debug your applications. This tag covers debugging concerns when developing Android applications.

More Info

399 questions
-2
votes
1 answer

Is there a way to know what all functions are called when a certain action is done by the user in an android application?

I am a beginner android developer and trying to fix some bugs in the app. I was using Android Studio Debugger to manually put breakpoints and see how the execution was going. This process was working fine for me until now, when I am in a situation,…
k786
  • 1
  • 2
-2
votes
1 answer

How to debug android app on dell inspiron 3542?

This may sound silly but I already know how to debug apps using android studio both on mobile and emulator. My problem is that currently my mobile usb mechanism is damaged so my laptop unable to recognize it even for file transfer. and I can't use…
-2
votes
1 answer

what video streaming protocol does lybrate uses?

I would like to know, what streaming protocol does lybrate app uses... https://play.google.com/store/apps/details?id=com.lybrate.phoenix&hl=en OpenTOK, twilio or they have built their own API with underlying webRTC protocol?
-2
votes
1 answer

Why is this android app crashing on the emulator?

I have been attempting to run this application from this repository https://github.com/tekinarslan/AndroidMaterialDesignToolbar But each time it crashes with the following message 07-26 11:36:39.864 4405-4405/com.tekinarslan.material.sample…
-2
votes
1 answer

Eclipse doesn't detect my Android device GT-S6810L

I'm using Eclipse + ADT, and my physical device (listed below) is unlisted on Android Device Chooser. I have updated Eclipse and all of the Android packages. My phone is running Android KitKat, which corresponds to the target version listed in the…
cdv86
  • 1
  • 3
-2
votes
1 answer

Android error when I set android:debuggable = "false" or "true"

Please help me to solve this error. When I put debuggable, the error appear like this "Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one". So i don't know what to do.... Anyone can help…
thet
  • 13
  • 1
  • 5
-3
votes
2 answers

Chrome remote dev tools are disordered, like the screenshot below, even though I remove all the settings

When I used chrome to debug my Android App WebViews, the remote device tool show like the screenshots. It was disordered, and on the bottom of the window is always blank, like something on it. When I changed the window size, all cell size…
-3
votes
2 answers

Android Programming Beginning

I am a beginner to Android programming. I install all required software to develop apps. My system is Windows 7 64bit with 8G ram. I started with a simple "hello world" application. But it takes too long to launch the Android system on emulator, and…
-4
votes
2 answers

How to fetch Data of List as in global Variable to get data in Oncreate() Method?

PostData.java public class PostData { List gobalAr=new ArrayList(); public List getList(){ return gobalAr; } public void setList( List gl){ this.gobalAr = gl; } String url =…
1 2 3
26
27