diff --git a/mobile/EnvoyMobile.podspec b/mobile/EnvoyMobile.podspec new file mode 100644 index 000000000000..1f1419e2b0f3 --- /dev/null +++ b/mobile/EnvoyMobile.podspec @@ -0,0 +1,13 @@ +Pod::Spec.new do |s| + s.name = 'EnvoyMobile' + s.version = '0.1.1' + 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-mac-v#{s.version}.zip" } + s.ios.vendored_frameworks = 'Envoy.framework' +end \ No newline at end of file diff --git a/mobile/docs/root/start/building/building.rst b/mobile/docs/root/start/building/building.rst index 41f1d66cfcc1..5b552d6919a2 100644 --- a/mobile/docs/root/start/building/building.rst +++ b/mobile/docs/root/start/building/building.rst @@ -87,3 +87,12 @@ example of how this artifact may be used. For a demo of a working app using this artifact, see the :ref:`hello_world` example. .. _releases: https://github.com/lyft/envoy-mobile/releases + +--------- +CocoaPods +--------- + +If you use CocoaPods, you can add the following to your Podfile to use the latest version of the prebuilt framework. + +``pod 'EnvoyMobile'`` +