pixl
pixl

Reputation: 101

Expo Development Build: "Failed to open app" due to DevLauncherManifestParser.kt

Problem

I'm trying to preview an update(via EAS Update) on my development build, but I keep getting an error saying:

"There was a problem loading the project. Failed to open app."

The stack trace points to DevLauncherManifestParser.kt, and some coroutine-related files.

Error Message

There was a problem loading the project.
This development build encountered the following error.

Failed to open app.

If you are trying to load the app from a development server, check your network connectivity and make sure you can access the server from your device.

If you are trying to open a published project, install a compatible version of expo-updates and follow all setup and integration steps.

downloadManifest
DevLauncherManifestParser.kt

access$downloadManifest
DevLauncherManifestParser.kt

invokeSuspend

resumeWith
ContinuationImpl.kt

run
DispatchedTask.kt

runSafely
CoroutineScheduler.kt

executeTask
CoroutineScheduler.kt

runWorker
CoroutineScheduler.kt

run
CoroutineScheduler.kt

What I Have Tried

Environment

Expected Behavior

The update should load normally on my development build.

Actual Behavior

The app fails to open with the error mentioned above.

Question

What could be causing this issue, and how can I fix it?


An image of the error screen and StackTrace An image of the error screen and StackTrace

Upvotes: 3

Views: 106

Answers (1)

Yunus TÜRE
Yunus TÜRE

Reputation: 46

Same problem happened to me.

"expo": "~52.0.32", "expo-dev-client": "~5.0.12"

Those versions fixed my problem. Also I have discovered that If I use an QR Scanner application instead of device own camera with SDK-52 it still failing. So install those versions and then scan your QR code with your device's built in camera app.Hope it will help.

Upvotes: 0

Related Questions