ld: library not found for -lKCKeepAwake-tvOS
See original GitHub issueHi,
I am getting an error (ld: library not found for -lKCKeepAwake-tvOS
) during the project build after I add KeepAwake to the project. I don’t need a tvOS version of course but it expects the lib to be present. Any ideas how to get rid of this error?
Thanks in advance.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:2
- Comments:7 (4 by maintainers)
Top Results From Across the Web
ld: library not found for -lRCTAnimation - Stack Overflow
1 Answer 1 ... Can you try to remove all the linked React Native library in Xcode ? ... With RN 60+ there...
Read more >Xcode10 - ld- library not found for - YouTube
I ran it successfully with 'pod install' ... but when I try to run my project i get this error.Xcode- ld - library...
Read more >iOS : Xcode - ld: library not found for -lPods - YouTube
iOS : Xcode - ld : library not found for -lPods [ Gift : Animated Search Engine : https://bit.ly/AnimSearch ] iOS : Xcode...
Read more >ld: library not found for -lAppAuth : r/reactnative - Reddit
Was trying to build my RN project for iOS and having an error ld: library not found for -lAppAuth clang: error: linker command...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I had the same issue, indeed manually removing libKCKeepAwake-tvOS.a from the linked libraries make it works but I wouldn’t have closed the issue, this still needs to be properly fixed
I have removed libKCKeepAwake-tvOS.a from the list of linked libraries in the ios project and now it works. Originally, I have installed KeepAwake with
react-native link
, not the manual install.