Changed Stripe Pod to "pod 'Stripe', '10.0.0'"
run pod install
install works, project is compileable
Pods.xcodeproject cannot be opened / project not compileable
Pods.xcodeproj.zip
Macminis-Mac-mini:CocoaPods appmagnetics$ pod env
CocoaPods : 1.2.1
Ruby : ruby 2.0.0p648 (2015-12-16 revision 53162) [universal.x86_64-darwin16]
RubyGems : 2.0.14.1
Host : Mac OS X 10.12 (16A323)
Xcode : 8.3.2 (8E2002)
Git : git version 2.11.0 (Apple Git-81)
Ruby lib dir : /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib
Repositories : bitbucket-mpymnt-io.mpymnt.repo.pods - https://bitbucket.org/mpymnt/io.mpymnt.repo.pods.git @ 02c30c199886e18f8b5596dfd79f80caf5f58f53
master - https://github.com/CocoaPods/Specs.git @ d50a1aef8dfda66908a97791cc203e1be568147a
Executable Path: /usr/local/bin/pod
cocoapods-deintegrate : 1.0.1
cocoapods-plugins : 1.0.0
cocoapods-search : 1.0.0
cocoapods-stats : 1.0.0
cocoapods-trunk : 1.2.0
cocoapods-try : 1.1.0
platform :ios, '8.0'
project '../Control.xcodeproj'
workspace '../Control.xcworkspace'
inhibit_all_warnings!
def common_pods
# pod 'PaymentKit', '1.0.2'
pod 'Stripe', '10.0.0'
pod 'CardIO', '~> 5.3.2'
pod 'TPKeyboardAvoiding', '~> 1.2.4'
pod 'DTCoreText', '~> 1.6.16'
pod 'LatoFont', '~> 1.0.0'
pod 'TrAnimate', '~> 1.0.4'
pod 'IPInsetLabel', '~>1.3.0'
pod 'FontAwesomeKit', '~> 2.1.0'
pod 'UIColor-HexString', '~> 1.1.0'
pod 'Intercom', '~> 3.0.11'
pod 'MCSMKeychainItem', '~> 1.1'
pod 'FBSDKCoreKit', '~> 4.8'
pod 'GoogleConversionTracking', '~> 3.1'
pod 'Analytics', '~> 3.4.0'
pod 'AFNetworking', '~> 2.5.3'
pod 'SVProgressHUD', '~> 1.1.3'
pod 'Appirater', '~>2.0.5'
pod 'AFNetworkActivityLogger', '~> 2.0.4'
pod 'SDWebImage', '~> 3.7'
pod 'CTCheckbox', '~> 0.0.1'
source 'https://github.com/CocoaPods/Specs.git'
source 'https://bitbucket.org/mpymnt/io.mpymnt.repo.pods.git'
# With payworks 2.11.0 there is following message:
# warning: object file (/Works/control-ios-paypal/CocoaPods/Pods/payworks/mpos.comlinks.tcp.framework/mpos.comlinks.tcp(MPTcpModule.o)) was built for newer iOS version (9.1) than being linked (8.0)"
# according to support it should be ignored and they should take care that it will be remove on next release
pod 'payworks/mpos/core', '2.20.1'
pod 'payworks/mpos/accessories/miura', '2.20.1'
pod 'payworks.paybutton', '2.20.1'
pod 'Branch'
pod 'Segment-Branch'
pod 'Mixpanel', '3.0.7'
pod 'FLAnimatedImage', '~> 1.0'
# pod 'KIF', '~> 3.0', :configurations => ['Debug']
end
project = Xcodeproj::Project.open "../Control.xcodeproj"
project.targets.each do |t|
target t.name do
common_pods
end
end
Hey there, this looks like a great example of a question that you should ask on StackOverflow - there is an active tag CocoaPods where people can help out with questions like this. We try to keep the CocoaPods issues focused only on bug reports for the tool, and for upcoming feature requests. Which this doesn't look like.
Most helpful comment
Hey there, this looks like a great example of a question that you should ask on StackOverflow - there is an active tag CocoaPods where people can help out with questions like this. We try to keep the CocoaPods issues focused only on bug reports for the tool, and for upcoming feature requests. Which this doesn't look like.