溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中SDK方法如何使用

發(fā)布時間:2021-06-28 15:06:28 來源:億速云 閱讀:216 作者:Leah 欄目:移動開發(fā)

今天就跟大家聊聊有關(guān)Android中SDK方法如何使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

1. 在Android模擬器上安裝和卸載APK包 

  1. adb install [-l] [-r] < file> - push this package 
    file to the device and install it   

  2. ('-l' means forward-lock the app) 
    ('-r' means reinstall the app, keeping its data)   

  3. adb uninstall [-k] < package> - remove this app 
    package from the device   

  4. ('-k' means keep the data and cache directories)  

安裝:

adb install filename.apk   D:\android-sdk\tools>adb install filename.apk   * daemon not running. starting it now *   * daemon started successfully *   347 KB/s (111196 bytes in 0.312s)   pkg: /data/local/tmp/filename.apk   Success

卸載:

adb uninstall filename.apk

或者

adb shell rm data/app/filename.apk


2. 在Android模擬器上使用sd card 

生成sdcard鏡像文件:

  1. mksdcard: create a blank FAT32 image to be 
    used with the Android emulator   

  2. usage: mksdcard [-l label] < size> < file>   

  3. if < size> is a simple integer, it specifies 
    a size in bytes   

  4. if < size> is an integer followed by 'K', it 
    specifies a size in KiB   

  5. if < size> is an integer followed by 'M', it 
    specifies a size in MiB   

  6. D:\android-sdk\tools>mksdcard.exe -l sdcard 
    2048M sdcard.img  

啟動模擬器:emulator -sdcard sdcard鏡像文件

例如: emulator -sdcard sdcard.img

將資源放入到sdcard里面: adb push source-file /sdcard

例如:

D:\android-sdk\tools>adb push NOTICE.txt /sdcard   1088 KB/s (156733 bytes in 0.140s)

使用命令adb shell 查看sdcard目錄:

D:\android-sdk\tools>adb shell   # ls sdcard   NOTICE.txt

看完上述內(nèi)容,你們對Android中SDK方法如何使用有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI