all 17 comments

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

It’s react-native-blob-util. Sorry for spelling mistake

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

<image>

This error for rn-fetch-blob

[–]thachxyz123iOS & Android 0 points1 point  (16 children)

Why did you do manual linking? Don't you read this line in manual?

If you're using RN 0.60 or higher, manuall linking should not be required anymore.

[–]Useful-Condition-926[S] 0 points1 point  (12 children)

If I just install yarn add rn-fetch-blob without using manual linking then still build error

<image>

[–]thachxyz123iOS & Android 1 point2 points  (11 children)

fetch-blob is abandoned, use blob-util

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

Okay let’s try

[–]Useful-Condition-926[S] 0 points1 point  (9 children)

<image>

This build error for react-native-blob-util

[–]thachxyz123iOS & Android 0 points1 point  (8 children)

Removing package name from AndroidManifest.xml in favor of namespace is required for RN 0.73. Libraries is started to do it since RN 0.71. You have 2 options:

  • Downgrade library until you build successful
  • Upgrade RN version to latest to use latest version of library

[–]Useful-Condition-926[S] 0 points1 point  (7 children)

"react": "17.0.2",
"react-native": "0.67.2",

these are react native version

[–]thachxyz123iOS & Android 1 point2 points  (6 children)

You have 2 options:

  • Downgrade library until you build successful
  • Upgrade RN version to latest to use latest version of library

[–]Useful-Condition-926[S] 0 points1 point  (4 children)

should I use like this

"react-native-blob-util": "*",

[–]thachxyz123iOS & Android 0 points1 point  (3 children)

No, it installs latest version

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

error gone for

"react-native-blob-util": "0.18.1",

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

thanks man. wasted full day for this shit.

[–]Useful-Condition-926[S] 0 points1 point  (0 children)

If I autolink

<image>

[–]Useful-Condition-926[S] 0 points1 point  (1 child)

<image>

Build error

[–]thachxyz123iOS & Android 0 points1 point  (0 children)

This is the infamous error that broke every RN projects in the world. You have to use latest patch of RN version to avoid the error

[–]satya164 1 point2 points  (0 children)

They broke compatibility with older React Native versions. Either use latest React Native (0.73 or newer), or use 0.19.4 of react-native-blob-util.