Alamofire NetworkActivityIndicatorManager Swift3 branch error - alamofire

/Users/jo.bloggs/Development/projName/projName/Pods/AlamofireNetworkActivityIndicator/Source/NetworkActivityIndicatorManager.swift:25:8: Module file's minimum deployment target is ios9.0 v9.0: /Users/jo.bloggs/Library/Developer/Xcode/DerivedData/projName-gssqurpxvfvyqyfpzbuoqcksofwl/Build/Products/Debug-iphonesimulator/Alamofire/Alamofire.framework/Modules/Alamofire.swiftmodule/x86_64.swiftmodule
My podfile has this at the top
platform :ios, '10.0'
use_frameworks!
All my targets have ios 10 as Deployment Target.
I deleted DerivedData, cleaned and rebuilt
I deintegrated cleaned and installed pods
Still stuck on this error
Can anybody please help me?
Thank you

Related

React native async storage mac OS pod install failing

Specs satisfying the `RNCAsyncStorage (from `../node_modules/#react-native-async-storage/async-storage`)` dependency were found, but they required a higher minimum deployment target.
I have changed the deployment target to 10.15 from xcode, but I still get this
The RNCAsyncStorage's min deployment target is 9.0.
Change the line in podfile to 9 or later. And I suggest marking it to 11
platform :ios, '9.0'

Use Pod library for only development not for production

I have pod library which helps developer at development time but no use when the application is released, So is there anything which helps me.
any changes in setting at the consumer side, which consume pod library.
or
any changes in setting in the pod library itself, because library is also created by me.
In podfile we need to add configuration to debug
pod 'podname', :configurations => ['Debug']
and below for release
pod 'podname', :configurations => ['Release']
In Xcode, open the project settings, in the "Targets" list column, right click on your main iOS target and duplicate it to create one just for development.
In your Podfile, list up the your development-purposed pods under your new development target name. A rough example:
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'Your_App_Development' do
pod 'SomeDevOnlyPod', '~> 5.6'
end
Hope that helps!

As CocoaPods 1.1.0+ is required to build Alamofire 4.0.0+,platform :ios, '10.0'. how to use alamofire 4.0.0+ under iOS 10?

As CocoaPods 1.1.0+ is required to build Alamofire 4.0.0+,platform :ios, '10.0'.
how to use alamofire 4.0.0+ under iOS 10?
CocoaPods 1.1.0+ is indeed required but as stated in the Readme the minimum iOS version is 9.0. The Podfile given there is just an example so you should write platform :ios, '9.0' to target below iOS 10.

Error in Intercom.bundle when trying to install 'Intercom' pod via Cocoapods

When attempting to install the Intercom pod in my Xcode Project, I get an error in the console:
[Intercom] ERROR - 💥👎 The Intercom.bundle hasn't been added to your app correctly. This will result in images not appearing in the SDK's messaging UI. More information on how to correctly integrate Intercom is available here: https://developers.intercom.com/docs/ios-installation.
Seems something is not right with the way cocoapods installed Intercom. Maybe corrupt, by doing these step it will clear all the cocoapods and start fresh. Which might solve your problem.
Open your Podfile and copy the existing pods you have listed there (The Podfile is in your project directory).
Close your Xcode workspace.
Open Terminal
cd to the directory of your project.
run pod deintegrate from Terminal
delete all files and folders related to cocoapods (Podfile, Podfile.lock, Pods folder and the xcworkspace file) if there are any left.
run pod init from Terminal
add the list of pods to the Podfile in the directory save it.
run pod install from Terminal
Open xcworkspace file in your project folder.
Right click on files marked red in xcode -> delete, then it should be solved :)

Alamofire 2.0 Compiler Issues - Swift 2 / Xcode 7

I'm having trouble converting my project to Xcode 7 Beta related to the Alamofire 2.0 as shown on the screenshot below. Even created a test project with the following podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 2.0'
I also reinstalled cocoapods. Still same problem. Anyone have some idea how to fix this?
You need to upgrade to the official Xcode 7.0 GM release. The Xcode 7 betas are no longer working with the Alamofire 2.x releases. They only worked with the betas. To run Alamofire 2.0.2, you need to be using Xcode 7 (7A220).