react-native-pdf icon indicating copy to clipboard operation
react-native-pdf copied to clipboard

package name missing from androidManifest causes pod install error

Open nikoloz110 opened this issue 9 months ago • 4 comments

What react-native version are you using? 0.69.5 What react-native-pdf version are you using? 6.7.1 What platform does your issue occur on? (android/ios/both) ios Describe your issue as precisely as possible :

  1. pod install fails because androidmanifest.xml missing package name. added package name from old versions package="org.wonday.pdf" and it worked again image

nikoloz110 avatar Nov 20 '23 12:11 nikoloz110

+1

zaferatli avatar Nov 20 '23 14:11 zaferatli

I have the same problem: React Native version: 0.70.5 "react-native-pdf": "^6.7.1"

AramCanyonRanch avatar Nov 21 '23 13:11 AramCanyonRanch

Same issue. The library cannot be installed at the moment.

react-native version: 0.70.1 react-native-pdf version: 6.7.3" platform: iOS

As a workaround, I added the following to the opening manifest tag in node_modules/react-native-pdf/android/src/main/AndroidManifest.xml.

package="org.wonday.pdf"

So the final file currently looks like:

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.wonday.pdf">


</manifest>

cort1c avatar Nov 27 '23 03:11 cort1c