voice icon indicating copy to clipboard operation
voice copied to clipboard

Execution failed for task ':app:processDebugMainManifest'. > Manifest merger failed with multiple errors, see logs

Open mushthak02 opened this issue 9 months ago • 6 comments

Execution failed for task ':app:processDebugMainManifest'.

Manifest merger failed with multiple errors, see logs

mushthak02 avatar Mar 26 '25 16:03 mushthak02

ios working fine . android not working these package

mushthak02 avatar Mar 26 '25 16:03 mushthak02

Me too

ignacio68 avatar Apr 09 '25 15:04 ignacio68

I Have also getting same issue. Any one have found solutions. In my case working well in ios but issue in android.

mrvirani avatar Apr 09 '25 21:04 mrvirani

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)

satya1395 avatar Apr 23 '25 05:04 satya1395

See answer

davidch-lqc avatar May 02 '25 07:05 davidch-lqc

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"

  1. Create a project using "yarn create expo-app" or "npx create-expo-app"
  2. 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" ] } ] ]

  1. 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".
  2. 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.
  3. 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

abdulCodeSnip avatar May 14 '25 20:05 abdulCodeSnip