標籤:android http io os ar for 檔案 sp on
1. SDK Platform 可以理解為版本,因此有 SDK Platform 7,SDK Platform 8等等 Android SDK Tools 是各個版本都可通用的工具檔案夾,裡面有draw9patch hierarchyviewer emulator等工具
Android SDK Platform-tools 是版本有區別的工具檔案夾,裡面有adb aapt等
這些檔案夾都可以在sdk安裝路徑下找到
2. ARM EABI v7a System Image:
更新Android 4.0 SDK後,建立4.0 AVD 時 ,報錯:Unable to find a ‘userdata.img‘ file for ABI .svn to copy into the AVD folder 然後下載安裝後沒事了。因此可以推斷,它應該是建立AVD(虛擬機器)是系統管理使用者資訊的軟體吧
if you work with the NativeDK, without that image the emulator is not able to simulate the execution of ARMv7 code (like multicore-instructions and NEON floating-point-unit)
3. Sources for Android SDK: 是這個版本的原始碼。
4. Google APIS是google提供的一些api介面。
5. MIPS system image:
What is it?
It is an emulator image that emulates a device that has a MIPS CPU, instead of an ARM or x86 CPU.
What does it do and when will someone use it?
You will use it if you wish to emulate a device that has a MIPS CPU, instead of an ARM or x86 CPU.
What will happen if I do not install it?
You will not be able to emulate a device that has a MIPS CPU, instead of an ARM or x86 CPU. The MIPS Consortium may cry. But, considering right now there are very few Android devices with MIPS CPUs on the market, not having a MIPS emulator is probably just fine.
6. Intel x86 atom system image
So my question is, what is intel x86 atom system image in android sdk manager?
It is a version of the Android emulator that runs natively on x86 CPUs, like those in most development machines.
Contrast that with the ARM system image, which contains ARM (not x86) CPU instructions, and therefore must be translated when run.
Should i install it or not?
The x86 emulator images, where available, tend to run faster. You will have to do some work on your development machine to take advantage of them, as is outlined in the documentation.
the option is present in api level 15 & 16 but not in 17.
AFAIK Google relies upon Intel to create these images, and Intel has only done so on a few API levels.
Android SDK Manager下載詳解