React Native - нет такого файла или каталога, откройте «app \ build \ промежуточные файлы \ merged_manifests \ debug \ AndroidManifest. xml» - PullRequest
1 голос
/ 14 февраля 2020

Я использую React Native 0.61.5 , после установки @act-native-community / cli и запуска response-native run- android появилась эта проблема:

info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag.
Jetifier found 864 file(s) to forward-jetify. Using 4 workers...
info Starting JS server...
error ENOENT: no such file or directory, open 'app\build\intermediates\merged_manifests\debug\AndroidManifest.xml'. Run CLI with --verbose flag for more details.
Error: ENOENT: no such file or directory, open 'app\build\intermediates\merged_manifests\debug\AndroidManifest.xml'
    at Object.openSync (fs.js:440:3)
    at Object.readFileSync (fs.js:342:35)
    at getLaunchPackageName (C:\Users\Gabriel\Desktop\testeProjeto\node_modules\@react-native-community\cli-platform-android\build\commands\runAndroid\getLaunchPackageName.js:161:33)
    at buildAndRun (C:\Users\Gabriel\Desktop\testeProjeto\node_modules\@react-native-community\cli-platform-android\build\commands\runAndroid\index.js:163:63)
    at C:\Users\Gabriel\Desktop\testeProjeto\node_modules\@react-native-community\cli-platform-android\build\commands\runAndroid\index.js:135:12
    at processTicksAndRejections (internal/process/task_queues.js:94:5)
    at async Command.handleAction (C:\Users\Gabriel\Desktop\testeProjeto\node_modules\@react-native-community\cli\build\index.js:182:9)

1 Ответ

0 голосов
/ 14 февраля 2020

Как говорится в этом ответе :

Похоже, что существует проблема с последней версией @ Reaction-native-community / cli-platform- android 3.1. 1.

Я решил свою проблему, понизив версию библиотеки до более старой, добавив ее в свой пакет. json.

"resolutions": {
    "@react-native-community/cli-platform-android": "2.9.0"
}

После этого удалите папку node_modules и запустите yarn или npm install снова.

...