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

426 questions
-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
-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
28
29