-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SystemStackError - stack level too deep
after updating to 0.25.0
#1384
Comments
Updated Podfile because |
Here is the Pod::Spec.new do |spec|
spec.name = 'SLRESTfulCoreData'
spec.version = '1.3.4'
spec.platform = :ios, '6.0'
spec.license = 'MIT'
spec.source = { :git => 'https://github.com/OliverLetterer/SLRESTfulCoreData.git', :tag => spec.version.to_s }
spec.frameworks = 'Foundation', 'UIKit', 'CoreData'
spec.requires_arc = true
spec.homepage = 'https://github.com/OliverLetterer/SLRESTfulCoreData'
spec.summary = 'Objc naming conventions, autogenerated accessors at runtime, URL substitutions and intelligent attribute mapping.'
spec.author = { 'Oliver Letterer' => '[email protected]' }
spec.default_subspec = 'Complete'
spec.subspec 'Core' do |sp|
sp.source_files = 'SLRESTfulCoreData/SLRESTfulCoreData/*.{h,m}', 'SLRESTfulCoreData/SLRESTfulCoreData/**/*.{h,m}', 'SLRESTfulCoreData/SLRESTfulCoreData/Framework Additions/**/**/*.{h,m}'
end
spec.subspec 'Complete' do |sp|
sp.dependency 'SLRESTfulCoreData/Core'
sp.dependency 'AFNetworking', '~> 1.3.1'
sp.dependency 'AFRESTfulCoreDataBackgroundQueue', '>= 1.0.1'
sp.dependency 'SLCoreDataStack', '>= 0.2.0'
end
end Commenting out Pod::Spec.new do |spec|
spec.name = 'AFRESTfulCoreDataBackgroundQueue'
spec.version = '1.0.6'
spec.platform = :ios, '6.0'
spec.license = 'MIT'
spec.source = { :git => 'https://github.com/OliverLetterer/AFRESTfulCoreDataBackgroundQueue.git', :tag => spec.version.to_s }
spec.source_files = 'AFRESTfulCoreDataBackgroundQueue'
spec.frameworks = 'MobileCoreServices', 'SystemConfiguration', 'Security', 'CoreGraphics', 'Foundation'
spec.requires_arc = true
spec.homepage = 'https://github.com/OliverLetterer/AFRESTfulCoreDataBackgroundQueue'
spec.summary = 'AFNetworking based AFHTTPClient conforming to SLRESTfulCoreDataBackgroundQueue.'
spec.author = { 'Oliver Letterer' => '[email protected]' }
spec.dependency 'AFNetworking', '~> 1.3.1'
spec.dependency 'SLRESTfulCoreData', '>= 1.0.0'
spec.prefix_header_contents = <<-EOS
#import <Availability.h>
#define _AFNETWORKING_PIN_SSL_CERTIFICATES_
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
end Maybe |
Thanks for the detailed report, I can successfully reproduce it. |
Report
Upgraded from 0.24.0 to 0.25.0 and ran
pod
from the command line.Normal
pod install
routine to get the newest and greatest cocoapods features.Crash below.
Stack
Podfile
Error
The text was updated successfully, but these errors were encountered: