Create an AVD for each Android version you want to test on.
For each AVD you create, go into properties, select GPU Emulation and set it to YES. Make sure to press ENTER after changing the value, or it will still be set to NO when you create the AVD. This step is important! Otherwise the application will crash on launch.
Run the AVD of your choosing.
Install your application onto the emulated device using the ADB tool http://developer.android.com/tools/help/adb.html. You may need to restart the ADB tool if it doesn’t detect the device, you can do this by running “./adb kill-server” followed by “./adb start-server”
Run your application! [import]uid: 135827 topic_id: 32386 reply_id: 332386[/import]
Actually a quick Google search and I found this and I can see it now…
“In order to show the tab in Eclipse, select Window -> Show View -> Other… in Eclipse. In the Android section, select the LogCat view which will show log messages for the emulator including your console.log messages under the “Web Console” topic. In order to isolate them click on the green cross to add a Filter, name the filter and assign “Web Console†to the Log Tag. By clicking OK, you’ll show only the Web Console messages including JS errors and your console.log output.”
We need to declare which version of OpenGL ES your application requires, you should use the android:glEsVersion attribute of the <uses-feature> element. You can also use the <supports-gl-texture> element to declare the GL compression formats that your application uses.
Create an AVD for each Android version you want to test on.
For each AVD you create, go into properties, select GPU Emulation and set it to YES. Make sure to press ENTER after changing the value, or it will still be set to NO when you create the AVD. This step is important! Otherwise the application will crash on launch.
Run the AVD of your choosing.
Install your application onto the emulated device using the ADB tool http://developer.android.com/tools/help/adb.html. You may need to restart the ADB tool if it doesn’t detect the device, you can do this by running “./adb kill-server” followed by “./adb start-server”
Run your application! [import]uid: 135827 topic_id: 32386 reply_id: 332386[/import]
thanks for your guide. It really helped! Keep on your good job