how to test android applications? I configured AVD emulator, the tests are no errors but when I run on the tablet - at the start of the application - exits with an error. I do not know what to do
-
I can look logcat on the tablet? – Max Usanin Sep 23 '12 at 19:10
-
Not at the same time as running the app, and not if you're on android 4.1. You can always connect it via USB and look at it. – Raghav Sood Sep 23 '12 at 19:10
-
can you give me instructions on how to do this? – Max Usanin Sep 23 '12 at 19:12
3 Answers
Have you read android debugging documentation on http://developer.android.com/tools/debugging/index.html ?
You can switch on USB Debugging in Android system settings in your tablet, and directly debug your application from Eclipse on your device.

- 2,659
- 4
- 29
- 54
Take a look at Androidd Developers official Testing page.
There, you will find a Testing Fundamental chapter which will teach you how to deal with the framework. Also, there is a step-by-step testing tutorial that will be very useful to you, I guess.

- 6,640
- 2
- 30
- 45
you might have to check the compatibility of the application. the application may be not compatible with your tablet version.
Try to use more emulators like Android Wear and TV
test with more API versions like 16,18, 19 and more.,
Test with many screen sizes also.,

- 3
- 6