java - Click Run in eclipse and nothing happens -


i have situation in eclipse, before work in eclipse app running fine, today, not working. click on progect->run as->android application. , nothing happens, no error, no popup window, nothing in console:

2015-10-15 11:01:03 - test] android launch! [2015-10-15 11:01:03 - test] adb running normally. [2015-10-15 11:01:03 - test] performing com.example.test.mainactivity activity launch [2015-10-15 11:01:03 - test] automatic target mode: launching new emulator compatible avd 'nexus_5_api_22_x86' [2015-10-15 11:01:03 - test] launching new emulator virtual device 'nexus_5_api_22_x86' [2015-10-15 11:01:04 - emulator] emulator: error: x86 emulation requires hardware acceleration! [2015-10-15 11:01:04 - emulator] please ensure intel haxm installed , usable. [2015-10-15 11:01:04 - emulator] cpu acceleration status: hax kernel module not installed! 

please tell me, how can run app in eclipse android phone?

if set gpu emulation yes avd, graphics acceleration automatically enabled when run it. if did not enable gpu emulation when created avd, can still enable @ runtime.

to enable graphics acceleration @ runtime avd:

if running emulator command line, include -gpu on option:

emulator -avd -gpu on

note: must specify avd configuration uses android 4.0.3 (api level 15, revision 3) or higher system image target. graphics acceleration not available earlier system images.

if running emulator android studio, run android application using avd -gpu on option enabled:

in android studio, click android application module folder , select run > edit configurations...

in left panel of run/debug configurations dialog, select android run configuration or create new configuration.

under target device options, select avd created in previous procedure.

in emulator tab, in additional command line options field, enter: -gpu on run android project using run configuration.


Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -