CocoaPods Cannot Update ScoutMaps-iOS-SDK Module

The current (installed) version of ScoutMaps-iOS-SDK is 2.4 and I am trying to update to the latest 2.5.

However, it doesn't update with any error.

I ran the command:

pod update

      

The output was:

Downloading dependencies
Using AFDownloadRequestOperation (2.0.1)
Installing AFNetworking 2.5.4 (was 2.5.3)
Using HMSegmentedControl (1.5.1)
Using MBProgressHUD (0.9.1)
Using Reachability (3.2)
Using SWRevealViewController (2.3.0)
Using ScoutMaps-iOS-SDK (2.4.0)
Using ScoutMaps-iOS-SDKTools (2.4.0)
Using ZipArchive (1.4.0)
Generating Pods project
Integrating client project

      

If I run the command:

pod outdated

      

Output (even after execution pod update

):

Updating spec repositories
Analyzing dependencies
The following pod updates are available:
- ScoutMaps-iOS-SDK 2.4.0 -> 2.4.0 (latest version 2.5)

      

The content of my subfile is as follows:

platform :ios, '7.1'

inhibit_all_warnings!

target 'MyTarget' do

pod 'ScoutMaps-iOS-SDK'
pod 'ScoutMaps-iOS-SDKTools'
pod 'AFNetworking', '~> 2.5'
pod 'MBProgressHUD', '~> 0.9'
pod 'SWRevealViewController', '~> 2.3'
pod 'HMSegmentedControl'

end

      

What could be causing this problem? Does anyone know how to fix this?

PS: I've already tried a "clean" install, the output pod outdated

is the same.

+3


source to share


1 answer


The reason is that it ScoutMaps-iOS-SDK

is a dependency on ScoutMaps-iOS-SDKTools

, ScoutMaps-iOS-SDKTools

not upgraded to 2.5.

The specification for ScoutMaps-iOS-SDKTOOLS 2.4 has the following dependency, that is, any version of ScoutMaps-iOS-SDK

version 2.4 can be used , but not 2.5.



"dependencies": {
    "ScoutMaps-iOS-SDK": [
      "~> 2.4.0"
    ],
    ...
}

      

+2


source







All Articles