Reputation: 311
I am stuck with an odd problem, I am trying to get rid of react-native-pdf so
react-native unlink react-native-pdf
)npm uninstall react-native-pdf
)Problem now is that when I try to run my app is giving me this error
and my terminal look like this
did I miss to do somenthing?
Upvotes: 2
Views: 3046
Reputation: 210
Not quite sure about iOS, but for Android here are a few things you can check as react-native unlink sometimes doesn't unlink it properly:
Delete any includes and project declarations to ':react-native-pdf'
Delete any compile declarations to ':react-native-pdf' under "dependencies"
In the getPackages() method, make sure you delete any references to ':react-native-pdf' such as new ReactNativePdfPackage()
or something similar. You may also have to delete any related imports.
Hope this helps!
Upvotes: 5