can't build the app for android after ejecting to native project

After ejecting my expo project to native one

I can’t export APK file

what I wonder is , why considering this task : ??

Task :app:bundleReleaseExpoUpdatesAssets FAILED

I ejected expo , it fails always in this task

here’s the full logs from Android Studio

Opening `/dev/tty` failed (6): Device not configured
resize:  can't open terminal /dev/tty
┌─────────────────────────────────────────────────────────────────────────┐
│                                                                         │
│   There is a new version of expo-cli available (3.20.0).                │
│   You are currently using expo-cli 3.13.8                               │
│   Install expo-cli globally using the package manager of your choice;   │
│   for example: `npm install -g expo-cli` to get the latest version      │
│                                                                         │
└─────────────────────────────────────────────────────────────────────────┘
[03:17:25] Cannot read property 'publishManifestPath' of undefined
[03:17:25] Set EXPO_DEBUG=true in your env to view the stack trace.

> Task :app:bundleReleaseExpoUpdatesAssets FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:bundleReleaseExpoUpdatesAssets'.
> Process 'command './node_modules/expo-updates/run-expo.sh'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 19s
509 actionable tasks: 2 executed, 507 up-to-date
1 Like

I have the same problem , is there a solution?

Did you run expo publish before?

What command are you using to build?

同样的问题。
expo eject后,android\app\main\assets生成两个新文件app.bundle,app.manifest是空的,执行./gradlew assembleRelease 后就会出现:
Error: The manifest at ‘\android\app\src\main\assets\app.manifest’ was empty or invalid.

Task :app:bundleReleaseExpoUpdatesAssets FAILED

I had to finally
start a new normal (React-Native) project from scratch and manually put my files inside it

I won’t use Expo again in my big projects , it was a fault to use Expo

2 Likes

./gradlew assembleRelease -x ‘:app:bundleReleaseExpoUpdatesAssets’

This topic was automatically closed 20 days after the last reply. New replies are no longer allowed.