Reputation: 2499
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
Upvotes: 1
Views: 152
Reputation: 3
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.,
Upvotes: 0
Reputation: 6690
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.
Upvotes: 0
Reputation: 2729
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.
Upvotes: 1