You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After `android-14.0.0_r29`, using `lunch sdk_phone_x86_64-userdebug` will result in the following error:
103
+
104
+
```shell
105
+
Valid combos must be of the form <product>-<release>-<variant>
106
+
```
107
+
108
+
After consulting Google's documentation, it was found that the `trunk_staging` option needs to be added, but using `lunch sdk_phone_x86_64-trunk_staging-userdebug` will result in the following error:
109
+
110
+
```shell
111
+
In file included from build/make/core/config.mk:380:
112
+
In file included from build/make/core/envsetup.mk:369:
113
+
build/make/core/product_config.mk:226: error: Cannot locate config makefile for product "sdk_phone_x86_64"
114
+
```
115
+
116
+
I found that the `target/product/sdk_phone_x86_64.mk` file no longer exists, and I looked at the [commit](https://cs.android.com/android/_/android/platform/build/+/4bf479f6057ad532c792e26d3d958a8b50fc1f02) that describes the changes:
117
+
118
+
```diff
119
+
Retire obsolete emulator targets and boards
120
+
121
+
the sdk_phone* targets are replaced with sdk_phone64*,
0 commit comments