您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)Android中SDK方法如何使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
1. 在Android模擬器上安裝和卸載APK包
adb install [-l] [-r] < file> - push this package
file to the device and install it('-l' means forward-lock the app)
('-r' means reinstall the app, keeping its data)adb uninstall [-k] < package> - remove this app
package from the device('-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鏡像文件:
mksdcard: create a blank FAT32 image to be
used with the Android emulatorusage: mksdcard [-l label] < size> < file>
if < size> is a simple integer, it specifies
a size in bytesif < size> is an integer followed by 'K', it
specifies a size in KiBif < size> is an integer followed by 'M', it
specifies a size in MiBD:\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è)資訊頻道,感謝大家的支持。
免責(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)容。