sourav
sourav

Reputation: 61

Duplicate Error while generating signed release apk

I'm trying to generate Release SignedApk but not getting successful. but in debug mode, it's working fine.

In Release mode the following error occurs: -

[raw/node_modules_reactnativevectoricons_glyphmaps_feather] /Users/sourav/backup/STMSParent/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json [raw/node_modules_reactnativevectoricons_glyphmaps_feather] /Users/sourav/backup/STMSParent/android/app/build/generated/res/react/release/raw/node_modules_reactnativevectoricons_glyphmaps_feather.json: Error: Duplicate resources [raw/app] /Users/sourav/backup/STMSParent/android/app/src/main/res/raw/app.json [raw/app] /Users/sourav/backup/STMSParent/android/app/build/generated/res/react/release/raw/app.json: Error: Duplicate resources [raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome] /Users/sourav/backup/STMSParent/android/app/src/main/res/raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome.json [raw/node_modules_reactnativevectoricons_glyphmaps_fontawesome]

thanks in advance

Upvotes: 0

Views: 770

Answers (1)

Wasi Sadman
Wasi Sadman

Reputation: 1482

Go to this folder

~/android/app/src/main/res/raw/

Delete all the files in there.

Now try to

$  cd android
$ ./gradlew clean
$ ./gradlew bundleRelease

This works for me...

Upvotes: 2

Related Questions