react-native-create-library
react-native-create-library copied to clipboard
.podspec file is created in ios folder
Currently .podspec file is created in ios folder and this is the reason why pod install is not working when you are using your new library. To make it work I had to:
- replace .podspec file to the root
- edit in replaced .podspec file value s.source_files to s.source_files = "ios/**/*.{h,m}"
@alshirokov81
Did you try npx pod-install instead? It should handle most common problems with pods installation.