----You received this message because you are subscribed to the "Android Building" mailing list.To post to this group, send email to android-...@googlegroups.comTo unsubscribe from this group, send email toFor more options, visit this group at---You received this message because you are subscribed to the Google Groups "Android Building" group.To unsubscribe from this group and stop receiving emails from it, send an email to android-buildi...@googlegroups.com.To view this discussion visit https://groups.google.com/d/msgid/android-building/d63ceccc-cf7f-4d17-b82d-c08b39f5250fn%40googlegroups.com.
$ list_products
panic: Missing config trunk_staging. Trace=[trunk_staging]
goroutine 1 [running]:
main.main()
build/soong/cmd/release_config/release_config/main.go:71 +0x14c5
In file included from build/make/core/config.mk:419:
In file included from build/make/core/envsetup.mk:51:
build/make/core/release_config.mk:142: error: release-config failed to run.
07:00:48 dumpvars failed with: exit status 1
Usually this is needed first to then find out which releases are supported for each target, and then to work out which build variants are supported, and then chain them all together to invoke with lunch.
$ list_releases aosp_cf_x86_64_phone
panic: Missing config trunk_staging. Trace=[trunk_staging]
goroutine 1 [running]:
main.main()
build/soong/cmd/release_config/release_config/main.go:71 +0x14c5
In file included from build/make/core/config.mk:419:
In file included from build/make/core/envsetup.mk:51:
build/make/core/release_config.mk:142: error: release-config failed to run.
15:31:00 dumpvars failed with: exit status 1
So, I used first part of the build ID in https://source.android.com/docs/setup/reference/build-numbers to ascertain bp2a is the release to use.
So, this target works for Cuttlefish:
$ lunch aosp_cf_x86_64_phone-bp2a-eng
(After looking at device/google/cuttlefish/AndroidProducts.mk)
By the way, https://source.android.com/docs/setup/reference/build-numbers says Pixel devices are supported in the android-16.0.0_r1 build tag. Is that table incorrect?