Open ekt1lud opened 2 years ago
Unfortunately, we don't have support for android 12 yet. We have plans to do it in the future, but we cannot give you an estimate when.
Facing the same issue with android-12.0.0_r25 @ekt1lud are you able to solve it? Any help is deeply appreciated.
We actually did find a workaround that worked for us. We did not care about the emulator image, so we created an empty file that we used to trick the build system that all the necessary files are present for the emulator build. These lines was added to our makefile:
# Workaround to include files to the emulator image. Adding empty files since we do not care about
# Emulator image.
INSTALLED_QEMU_SYSTEMIMAGE := /path/to/an/empty/file.txt
INSTALLED_QEMU_VENDORIMAGE := /path/to/an/empty/file.txt
INSTALLED_QEMU_RAMDISKIMAGE := /path/to/an/empty/file.txt
QEMU_VERIFIED_BOOT_PARAMS := /path/to/an/empty/file.txt
We actually did find a workaround that worked for us. We did not care about the emulator image, so we created an empty file that we used to trick the build system that all the necessary files are present for the emulator build. These lines was added to our makefile:
# Workaround to include files to the emulator image. Adding empty files since we do not care about # Emulator image. INSTALLED_QEMU_SYSTEMIMAGE := /path/to/an/empty/file.txt INSTALLED_QEMU_VENDORIMAGE := /path/to/an/empty/file.txt INSTALLED_QEMU_RAMDISKIMAGE := /path/to/an/empty/file.txt QEMU_VERIFIED_BOOT_PARAMS := /path/to/an/empty/file.txt
I tried, but if I remove out/target/product/
I am trying to use this guide in Android 12, but I encounter an error:
I am using AOSP branch android-12.0.0_r28.
Note: Some other minor errors is encountered when using Android 12 that was easier to solve.