Reputation: 2120
I want to start playing around with Android. Downloaded the sources and followed the instructions from the download page
Made a plain generic build:
============================================
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=
============================================
But how can i create an e.g.qemu image from that. I looked around the /out dir,found the host tools and the emulator but dont know where to start to get this running.
Upvotes: 3
Views: 4925
Reputation: 917
Are you trying to build for the emulator? if so follow these steps:
That should get you started.
if you need to quickly rebuild a subset and load the changes in the emulator use "adb remount && adb sync".
if you want to rebuild the system image use "make snod"
Hope this helps.
Upvotes: 3