appsquickly / typhoon

Powerful dependency injection for Objective-C ✨✨ (https://PILGRIM.PH is the pure Swift successor to Typhoon!!)✨✨
https://pilgrim.ph
Apache License 2.0
2.7k stars 269 forks source link

Typhoon not compiling after update pod #542

Open jcmartinac opened 7 years ago

jcmartinac commented 7 years ago

I have updted my pods, and typhoon has changed version from 3.5.1 to 4.0.1, and compiling throws this:

captura de pantalla 2017-01-20 a las 8 50 42

I have done a clean and clean build folder without solve it. Any clue?

alexgarbarev commented 7 years ago

Yeah, I think something is not right inside your Pods configuration. Try to delete Pods folder and then call pod install. Also make sure that Typhoon only added to your main project target (not tests target)

jcmartinac commented 7 years ago

Following your directions I got same error. This is mi pod file:

source 'https://github.com/CocoaPods/Specs.git'

use_frameworks!

platform :ios, '9.0'

abstract_target 'Project' do
    pod 'AFNetworking', '~> 3.0'
    pod 'Typhoon'
    pod 'JSONModel'
    pod 'Realm'
    pod 'Crashlytics'
    pod 'OHHTTPStubs'
    pod 'EXTView'
    pod 'ActionSheetPicker-3.0'

    target 'Project-PRO'
    target 'Project-QA'
    target 'Project-DEV'
    target 'Project-AppStore'

end

target 'ProjectTests' do

    pod 'OCMock'
    pod 'OHHTTPStubs'
    pod 'Realm'

end

target 'ProjectIntegrationTests' do

    pod 'OCMock'
    pod 'OHHTTPStubs'
    pod 'Realm'

end
etolstoy commented 7 years ago

@jcmartinac do you still have this problem?

jcmartinac commented 7 years ago

@etolstoy nothing change since last time... I am working with version: pod 'Typhoon', '~> 3.5.1', because I don't know how to solve it

etolstoy commented 7 years ago

@jcmartinac I'll check it.

jcmartinac commented 7 years ago

@etolstoy did you find anything?

cbedoy commented 7 years ago

I'm having the same issue but with xcode 8.3

AdithyaReddy commented 6 years ago
screen shot 2018-07-02 at 1 37 47 pm

I am trying to migrate from 3.5.1 -> 4.0.5 and I get the above error. My codebase is running on Swift3.2.

Can someone please have a look at this?