Could Not Build Module 'Nanopb' Error in Xcode 12.0.1

Could not build module 'nanopb' error in Xcode 12.0.1

All I did was to follow the instruction(see image below) and it got fixed.

Source here

Sample Image

No such module error in Xcode 12.4 Apple M1

Adding this to podfile helps me

post_install do |installer|   
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end

Could not build module and include of non-modular header inside framework module error in Xcode 7.3

Change the "Allow Non-modular includes in Framework Modules" to "Yes" in the Build Settings for your pod

xCode 7.1: Could not build Objective-C module 'GoogleMaps'

Answered in this similar question: xCode 7 error: include of non-modular header inside framework module with Google Maps

...but essentially you'll need to create an Objective-C bridging header file whereas you may not have needed one with Xcode 7.0. The why still eludes me.

Swift 4 + Xcode 9 + Could not build Objective-C module 'FBSDKLoginKit'

I think you have error setting pods, check steps with project files here:

https://github.com/mohammedjamalhadi/FBLogin



Related Topics



Leave a reply



Submit