Building the source code
We have made all the changes required to support Wi-Fi in emulators now. Let's build the AOSP source code for this chapter so that we can test the Wi-Fi connection.
Getting the source code
As we have done in previous chapters, we will have a look at the projects that we have changed in this chapter. We can check this from the manifest file for this chapter:
<?xml version="1.0" encoding="UTF-8"?> <manifest> <remote name="github" revision="refs/tags/android-7.1.1_r4_x86emu_ch07_r2" fetch="." /> <remote name="aosp" fetch="https://android.googlesource.com/" /> <default revision="refs/tags/android-7.1.1_r4" remote="aosp" sync-c="true" sync-j="1" /> <!-- github/shugaoye --> <project path="kernel" name="goldfish" remote="github" /> <project path="device/generic/x86emu" name="x86emu" remote="github" /> <project path="bootable...