Edit: I know that I can easily download the SDK, but I specifically want to build everything myself. I am trying to understand the build process more.
I used the repo to download the AOSP source. Several places help me build the SDK as follows:
$ cd $AOSP_ROOT $ . build/envsetup.sh $ lunch sdk-eng $ make sdk
This works fine, I get the zip file from the SDK, and the emulator works. However, the only target for Android that is generated is the latter, for example.
$ cd $SDK_ROOT/platforms $ ls android-4.0.4.0.4.0.4
- thatβs all I see. How can I get other Android targets? Should I use the repo to switch the Android branch I'm working on, build the entire SDK and just copy the files I need? Is there an easier way, like another goal, to achieve this? Can I request the creation of an SDK and the availability of all goals? Should I just download the non-locally compiled SDK and copy the targets to my SDK_ROOT / platforms?
source share