1. 程式人生 > >emulator啟動自己編譯的工程時出錯的解決辦法

emulator啟動自己編譯的工程時出錯的解決辦法

自己編譯了個android4.2工程,第一次編譯完直接在src下emulator 模擬器正常執行,後來去不行了一直提示如下錯誤,在網上找了半天解決辦法,都說是加什麼環境變數,也沒有解決,摸索發現如下解決辦法

emulator: ERROR: You did not specify a virtual device name, and the system

directory could not be found.

If you are an Android SDK user, please use '@<name>' or '-avd <name>'
to start a given virtual device (see -help-avd for details).

Otherwise, follow the instructions in -help-disk-images to start the emulator

解決辦法非常簡單:

就是你在第一次整體編譯的時候用的是用的命令是

lunch full-eng

以後一般都是在修改過的地方mm 或 make systemimage

只要在emulator之前再執行一次

lunch full-eng

上面的問題就不會出錯了。