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
0
votes
3 answers

Why are Mac and Linux Android ready but Windows isn't

According to the Android developers website "If you're developing on Mac OS X or Linux, then you probably don't need to install a USB driver." This is something that makes debugging Android application rather annoying on a Windows machine since…
yiati
  • 995
  • 1
  • 12
  • 27
0
votes
1 answer

PhoneGap not Working on Android device

I'm trying to Run PhoneGap on my android Device "Galaxy Tab 10.1" and it's not working .. i following the next steps, but not working ... Putting cordova-2.7.0.jar at libs directory. putting cordova-2.7.0.js at assets/www directory. include xml…
Ahmed Ezz
  • 25
  • 9
0
votes
3 answers

Android Open Source Project - How to debug java code and view XML's as graphical Representation

I need some information related to Android open source project as i have started looking into it for some reverse engineering. How can we debug Android system services (other than logger option) e.g notification, network (i am using Eclipse Juno).…
user755499
  • 2,241
  • 4
  • 25
  • 34
0
votes
1 answer

Device not getting detected in DDMS in Ubuntu 12.04 - 32bit

I am using Ubuntu 12.04 32bit. I have a Micromax Ninja A87 Android phone running GB 2.3.5. My problem is the phone does not get detected. When I try on a windows 7 pc, it does get detected. Here are all the steps I followed but still no lucks. $…
basu
  • 87
  • 1
  • 2
  • 10
0
votes
3 answers

not debuging my phone android application

I am trying to test my android app (android 2.3.3) via my karboon A1+ phone. However, I cannot get Eclipse to recognize my device on the debug config menu. My phone is recognized by my computer when I connect via the usb cable. I can access my phone…
kirti
  • 183
  • 16
0
votes
1 answer

If the app crashes once, I cannot start the app unless I restart my Android phone

I am developing an app for Android on my HTC Desire HD; at times during the App development the app crashes due to some reason or the other. But once it crashes, it won't start in any case and the only solution is to restart my device. I have tried…
rahulg
  • 2,183
  • 3
  • 33
  • 47
0
votes
1 answer

Application fails to run in emulator

I have coded an application .Everything is fine in the code. But it do not run in the emulator. It give some error as follows: Parser exception for D:\Android Workspace\DbTuts\AndroidManifest.xml: The element type "application" must be terminated…
0
votes
1 answer

Simulate localization in a Android device with debug mode

I connect my tablet android galaxy 2 to my pc for debug my application with eclipse, it runs good but I am trying to simulate the location in a google map that I included into my app. I try with gps android simulator and seems that it connect to…
ƒernando Valle
  • 3,634
  • 6
  • 36
  • 58
-1
votes
1 answer

UninitializedPropertyAccessException:

I'm working on Android development using Kotlin, and encountering an issue with a lateinit var named polyline. The error I'm getting suggests that even though I assigned a value to polyline inside a function called from the onCreate, the app is…
Kossy
  • 7
  • 3
-1
votes
1 answer

I'm having trouble loading my android physical phone, it keeps says loading device for hours and nothing happens

this the screenshot of my Android Studio, I'm trying to learn flutter but I'm having issues while setting my physical device to it, android studio says loading device for hours and nothing happens, and even I'm failing to initialize ABD
-1
votes
1 answer

I build an app in Android Studio i made it apk then installed in phone

i can not open that app after installation i get summary error: java.lang.RuntimeException: Canvas: trying to draw too large(127844352bytes) bitmap. at android.view.DisplayListCanvas.throwIfCannotDraw(DisplayListCanvas.java:229) at…
-1
votes
1 answer

Lambda does not work .. even though I have JavaVersion.VERSION_1_8 set correctly, do I miss anything?

Lambda does not work with Android Studio: This is what I have in gradle compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } These are the project settings ext…
user3053247
-1
votes
2 answers

Debug an app on a device without any USB port?

I have a android device that doesn't have a usb data transfer and i need to debug an android app on it. all the solution that i already read, need to connect the device using usb cable at least once. I was wondering is there anyway that i can debug…
mahboub_mo
  • 2,908
  • 6
  • 32
  • 72
-1
votes
1 answer
-1
votes
1 answer

Application in Android studio is stopping automatically while debugging

There is an app which i am running on android studio in debug mode. It is running fine and it stops at the breakpoint set, but when i press F6(Step Over) after the breakpoint i.e. Step Over again and again, it will execute till the end of that…