Post

Replies

Boosts

Views

Activity

Reply to Failed to load Info.plist from bundle at path Frameworks/RCTVibration.framework/Info.plist: No such file or directory (React Native)
I also tried all the methods mentioned above, but they didn't work, and when I debugged all the Cocoapod and XcodeProj in Ruby, it was confirmed that the problem occurred due to the special setting. It may be a unique case, but it is very simple to check, so I recommend you to try it... if ENV['INFOPLIST_FILE'] has a file for any Info.plist, CocoaPods doesn't make Info.plist for Pod targets. reference: https://github.com/CocoaPods/Xcodeproj/blob/29cd0821d47f864abbd1ca80f23ff2aded0adfed/lib/xcodeproj/project/object/build_configuration.rb#L115 I put this phrase in for the test and I was able to confirm that the file existed. puts "#{ENV['INFOPLIST_FILE']}" Finally, I could solved adding this line on top of Podfile. ENV['INFOPLIST_FILE'] = nil By the way, I don't know how I ended up assigning a specific Info.plist file to ENV...
Oct ’22