Execution failed for task ':app:processDebugMainManifest'. > Manifest merger failed with multiple errors, see logs
Execution failed for task ':app:processDebugMainManifest'.
Manifest merger failed with multiple errors, see logs
ios working fine . android not working these package
Me too
I Have also getting same issue. Any one have found solutions. In my case working well in ios but issue in android.
have same issue. iOS build works with latest expo but Android fails with eror:
BUILD FAILED in 5s
238 actionable tasks: 57 executed, 167 from cache, 14 up-to-date
Error: /Users/mymac/expo/myapp/android/gradlew app:assembleDebug -x lint -x test --configure-on-demand --build-cache -PreactNativeDevServerPort=8081 -PreactNativeArchitectures=arm64-v8a exited with non-zero code: 1
Error: /Users/mymac/expo/myapp/android/gradlew app:assembleDebug -x lint -x test --configure-on-demand --build-cache -PreactNativeDevServerPort=8081 -PreactNativeArchitectures=arm64-v8a exited with non-zero code: 1
at ChildProcess.completionListener (/Users/snt1395/expo/mindloop/node_modules/@expo/spawn-async/src/spawnAsync.ts:67:13)
See answer
If you can then, I'll suggest use expo-speech-recognition which works with expo-dev-client I've done it, the "@react-native-voice/voice" only works with the old versions of sdk, the "expo-speech-recognition" works very fine and easily with just a few clicks"
- Create a project using "yarn create expo-app" or "npx create-expo-app"
- Install the "expo-dev-client" and "expo-speech-recognition" dependencies. make sure you add the plugins to the "expo-speech-recognition in your "app.json" file.
"plugins": [ [ "expo-speech-recognition", { "microphonePermission": "Allow Speech to text to use the microphone.", "speechRecognitionPermission": "Allow Speech to Text to use speech recognition.", "androidSpeechServicePackages": [ "com.google.android.googlequicksearchbox" ] } ] ]
- After that run the command "yarn expo run:android" or "npx expo run:android" to build your app in a dev-client. Wait for few minutes to complete and then wait for the emulator to install your custom "expo-dev-client".
- Enter the URL of your app in the "expo-dev-client" and connect your app with your code for live changes. and for implementing the code please visit this website "NPM Expo Speech Recognition.
- Make sure you've Android Studio and JDK installed on your computer. If you want to test your App on real device you can also do that....
Thanks You so Much. From here I learned a lot. Thank You Everyone