Android建立模擬器進行調試

來源:互聯網
上載者:User

標籤:

安裝好android開發環境後,用到以下幾個命令,android, adb, emulator

android - 最基本的android命令,可以進行sdk更新,列出裝置源,產生虛擬設備等。

adb - android debug bridge, 是一個用戶端程式,可以串連監聽5037連接埠的伺服器(adb server),這個adb server掃描虛擬設別或物理裝置上的5555-5585之間的奇數連接埠號碼,這些連接埠號碼是adb daemon監聽的,adbd就是運行在各個裝置上的精靈,用來監聽來自adb的命令,用來執行一些操作,比如安裝程式,傳送檔案,拉取檔案等。

結構圖大致為:

adb   ->      5037:adb server in pc    ->     5555: adb daemon in device


emulator  - 針對虛擬設備的命令,比如開啟虛擬設備。


#列出可用的裝置源

android list target


id: 1 or "android-21"

      Name: 

...


#根據可用的裝置源建立一個虛擬裝置執行個體, -n 指定名字,-t指定id號。

android create avd -n zhcemulator -t 1


#列出所有的虛擬設備執行個體

android list avd


#開啟虛擬設備

emulator -avd zhcemulator


#有時候會出現error:this platform has more than one ABI, please specify one using --abi

這是缺少image,將arm或intel的image下載下來即可。


#有時候可能會出現failed to open lib64EGL_translator等錯誤,這是因為一些共用庫emulator無法找到,共用庫在tools/lib/下,比如:

lib64EGL_translator.so
lib64GLES_CM_translator.so
lib64GLES_V2_translator.so
lib64OpenglRender.so
。。。

將它加入到LD_LIBRARY_PATH環境變數中即可。

或者直接將上述so檔案複製到tools目錄下。

如果還無法解決問題,那麼可能就是顯卡的問題了,可以升級顯卡驅動等。


export LD_LIBRARY_PATH

#列出當前的裝置,包括physical和emulator

adb devices



#進入裝置的shell環境

adb -s zhcemulator shell


#安裝程式

adb -s zhcemulator install hongchangfirst.apk


#更新已有程式

adb -s zhcemulator install -r hongchangfirst.apk


#向android上push一個檔案

adb -s zhcemulator push /home/hongchangfirst/a.data /mnt/sdcard/


#從android上拉取一個檔案夾下來

adb -s zhcemulator pull /mnt/sdcard /home/hongchangfist/


#開啟sdk manager的GUI

android update sdk 


android update sdk --no-ui


原文:http://blog.csdn.net/hongchangfirst/article/details/41896411

作者:hongchangfirst

hongchangfirst的首頁:http://blog.csdn.net/hongchangfirst


著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

Android建立模擬器進行調試

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.