I added react-native-device-info with npm i react-native-device-info. I'm using React Native 0.61, so I expected that it would automatically add a line in my Podfile for RNDeviceInfo. My Podfile didn't change, BUT when I ran pod install, it said "Installing React Native Device Info". I notice that doing this didn't add a .xcodeproj or .a file to Xcode.
Can anyone help me understand what's going on?
Adding React Native module doesn't add line to Podfile, but `pod install` installs it anyway
257 Views Asked by RNdev At
1
There are 1 best solutions below
Related Questions in XCODE
- Using Storyboard Reference
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Error when creating UIImage
- fade in an bounce animation subview
- How to delete static library ".a" file from xcode project?
- Error in main.storyboard
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Using paths bonded to a XCode project to be shared
- How to set the time of Local notification in app to random between two times? (swift)
- "Invalid Signature, code object not signed at all" error
- Alarming memory increase with custom segue
- Display both alertTitle and AlertBody on a custom WatchKit notification
- How to make a CocoaPods project work on OS X El Capitan & Xcode 7 Beta?
- Cannot use CTRL+Drag for making a button action in Xcode?
- Labels properties changing in Xcode
Related Questions in REACT-NATIVE
- React Native: detect if UIVisualEffectView is supported
- Prevent Chrome debugger from stealing focus in React Native
- React-native upload image to amazons s3
- react-native update NavigatorIOS component's props
- promise – can't find variable process
- Using React Native within existing iOS app for some views only
- What is a good approach to building and distributing a React Native iOS component that extends iOS functionality?
- error in xcode 6 "is not registered as a URL scheme. Please add it in your Info.plist"
- DeviceEventEmitter stops emitting events to application when screen locked
- How to rename react-native entry file (index.ios.js)
- react-native component lifecycle methods not firing on navigation
- How to use comments in React
- react-native propagate changes in props through ListView and Navigator
- How do i use the iOS shake gesture with react native?
- TouchableHighlight won't accept press events while keyboard is open
Related Questions in COCOAPODS
- Cannot pod spec lint because of undeclared type errors
- CocoaPods Failed to Lint A Podspec Due to Objective-C Generated Interface Header Not Found
- Cocoapods library not found for apple watch extensions
- PureLayout in Swift with Cocoapods
- Can't find Pods.modulemap - looking in wrong directory
- Update AWSS3 with Cocoapods
- Error installing cocoapods: Failed to build gem native extension
- Google Maps 1.10.1 iOS with cocoapods giving duplicate symbol error
- install cocoapods library with specific name
- How to use YouTube iOS player helper with use_frameworks! with CocoaPods
- Google Sign in CocoaPods Install in Swift?
- How to remove Cocoa-Pod from project?
- Getting error in Adjust library, Integrated with Pods
- Cocoapods generate bad xcconfig file - no header search path
- Google Map flickering in iOS
Related Questions in PODFILE
- How to insert text after a certain string in file using run script in iOS
- Pod install takes too long time
- Is it possible to build pods only once?
- The document “podfile” could not be opened in CococaPods client
- How to find out if CocoaPods was installed in my Mac?
- Integrating pods with all targets
- GoogleDataTransport/GDTCORLibrary/Public/GoogleDataTransport/GDTCORTransport.h' file not found
- Why does `Podfile.lock` change `SPEC CHECKSUMS` section on `pod install` when nothing has changed?
- Flutter: CocoaPods's specs repository is too out-of-date to satisfy dependencies
- Error when calling perform operation on apollo ios
- Error when running pod install on Flutter App
- Flutter Podfile issue
- I get this message when trying to run pod install in react-native ios folder [!] Invalid `Podfile` file: unexpected token at 'TypeError
- React Native Expo set minimum iOS Deployment Target for Podfiles
- Cocoapods Not Updating to Latest Version of Firebase
Related Questions in REACT-NATIVE-DEVICE-INFO
- Does anyone know how to get the IMEI number of device in React Native using EXPO?
- React native android app crashes in assemble release build when use react-native-device-info module
- Invariant Violation: Module JSTimers is not a registered callable module(calling callTimers).Issue due to device-info package in lerna setup
- How to get device Id in expo react native app
- How can I get list of apps, images and videos of my device in react native?
- How to auto-detect phone numbers of the user in react-native?
- Execution failed for task ':compileDebugJavaWithJavac' while trying to build Android App
- Manifest merger failed. After adding and linking react-native-device-info
- Can I get some sample output from react-native-device-info?
- Adding React Native module doesn't add line to Podfile, but `pod install` installs it anyway
- React Native Android App Build failed in appcenter.ms
- How can we get other apps' screen time in react native? Is there any library or package available in react native?
- Unable to return IP address using react-native-device-info's getIPAddress()
- React Native force component refresh when the app goes to foreground
- How to resolve React Native Firebase Error (messaging().getToken()), related to react-native-device-info
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You have to go node_modules folder, and find react-native-device-info folder and final step is remove RNDeviceInfo.podspec file. I recommended you copy RNDeviceInfo.podspec file before removing.