Nimbus is not compatible with iOS 4.3 using cocoapods

when I try to use cocoapods to install Nimbus , I get the following error: [!] Nimbus (1.0.0) is not compatible with iOS 4.3.

I'm not sure where iOS 4.3 came from, but here are a few more details:

content of my subfile:

 platform :ios pod 'AFNetworking', '0.9.1' pod 'SSToolkit' pod 'ConciseKit' pod 'Nimbus' 

when I run pod install , I get:

 warning: Insecure world writable dir /usr/local in PATH, mode 040777 warning: Insecure world writable dir /usr/local in PATH, mode 040777 Resolving dependencies of `./Podfile' Updating spec repositories Cocoapods 0.17.0.rc1 is available. Resolving dependencies for target `default' (iOS 4.3) [!] Nimbus (1.0.0) is not compatible with iOS 4.3. 

ideas?

+4
source share
2 answers

If you do not determine the version of iOS, 4.3 is considered the default cocoapods

For example, if you define a Podfile as shown below platform :ios, '5.0' , the minimum version of iOS for your file will be 5.0

In your case, this means that Nimbus has a higher iOS version number, defined as the minimum in its podspec. Update your subfile to support a higher version depending on your minimum project goal or check if previous versions of Nimbus are compatible with ios 4.3

to determine the specific version to use pod pod 'Nimbus', '0.X.Y' , where X and Y are version numbers

+25
source

In your swap file, replace platform: ios with platform: ios, '7.1'

-1
source

All Articles