Android Drive Monthly Exam 2
Chapter II Building an Android development environment-Reading notes
- Learn about the tools required for Android bottom-up development, including jdk6+,as tools or ADT integrated tools for development, as well as Linux kernel source code, cross-compilation environment, Android source code, and serial tools minicom. At the same time, a series of installations such as JDK can be installed under Linux with Apt-get or yum, if not found, then update it, then do. Bath_profile configuration, build configuration with the source command. As for the Android development environment, you can use as directly, but Linux does not seem to have as, so it is recommended to build ADT and the operating environment step-by-step.
- Later more important is the cross-compilation environment, because the mobile phone is based on arm, and the PC is X86, so need to develop arm applications on the X86, you must use the cross-compiler, you can use the Codesourcery cross-compilation environment, downloaded after the SH Package.bin for visual installation.
- Summary, (1) Build the Android environment, this is relatively simple but essential. (2) Build cross-compiling environment, this also must use, because x86->arm is necessary through this road.
Chapter II Building an Android development environment-Reading notes