exp://127.0.0.1:19000/--/path/into/app style links for dev-client

Hello,

Previously, I used exp://127.0.0.1:19000/--/path/into/app links to redirect to a certain route of my app in Expo Go.
Now I have switched to development builds (expo start --dev-client) and created a link according to their documentation Tools, workflows and extensions - Expo Documentation). The link works fine without /--/path/into/app part, but lands me on the home page of course.

But when I add /--/verification to the link, it gives the following error.

Does anybody know, how to create a correct link?

If anybody has the same issue in the future, I solved it by adding const prefixes = Config.APP_ENV !== "dev" ? [prefix] : [prefix, "exp+myslug://--/"]; . Then I use exp+myslug://--/ to link into the app.