-
Notifications
You must be signed in to change notification settings - Fork 85
ios: fix podspec for v0.2.0 support #577
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
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,17 @@ | ||
| Pod::Spec.new do |s| | ||
| s.name = 'EnvoyMobile' | ||
| s.version = '0.2.0' | ||
| s.author = 'Lyft, Inc.' | ||
| s.summary = 'Client networking libraries based on the Envoy project' | ||
| s.homepage = 'https://envoy-mobile.github.io' | ||
| s.documentation_url = 'https://envoy-mobile.github.io/docs/envoy-mobile/latest/index.html' | ||
| s.social_media_url = 'https://twitter.com/EnvoyProxy' | ||
| s.license = { :type => 'Apache-2.0', :file => 'LICENSE' } | ||
| s.platform = :ios | ||
| s.source = { :http => "https://github.com/lyft/envoy-mobile/releases/download/v#{s.version}/envoy_ios_framework.zip" } | ||
| s.ios.vendored_frameworks = 'Envoy.framework' | ||
| s.name = 'EnvoyMobile' | ||
| s.version = '0.2.0' | ||
| s.author = 'Lyft, Inc.' | ||
| s.summary = 'Client networking libraries based on the Envoy project' | ||
| s.homepage = 'https://envoy-mobile.github.io' | ||
| s.documentation_url = 'https://envoy-mobile.github.io/docs/envoy-mobile/latest/index.html' | ||
| s.social_media_url = 'https://twitter.com/EnvoyProxy' | ||
| s.license = { :type => 'Apache-2.0', :file => 'envoy_ios_cocoapods/LICENSE' } | ||
|
rebello95 marked this conversation as resolved.
Outdated
|
||
| s.platform = :ios, '10.0' | ||
| s.swift_version = '5.1' | ||
| s.libraries = 'resolv.9', 'c++' | ||
| s.frameworks = 'SystemConfiguration' | ||
| s.source = { :http => "https://github.com/lyft/envoy-mobile/releases/download/v#{s.version}/envoy_ios_cocoapods.zip" } | ||
|
rebello95 marked this conversation as resolved.
Outdated
|
||
| s.vendored_frameworks = 'envoy_ios_cocoapods/Envoy.framework' | ||
| s.source_files = 'envoy_ios_cocoapods/Envoy.framework/Headers/*.h', 'envoy_ios_cocoapods/Envoy.framework/Swift/*.swift' | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You shouldn't need source files since you're vendoring a framework?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without this the framework fails
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there a corresponding CocoaPods issue about this? Seems weird that no one else would have this case
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not from what I could tell, but I'm happy to file one. Assuming it's only an issue for mixed Objective-C/Swift libraries?
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CP likely doesn't check that either way, but maybe you adding the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Commenting out
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Mind taking another look whenever you get a chance @keith? |
||
| end | ||
Uh oh!
There was an error while loading. Please reload this page.