From 5ccf17eb0bdfc4126e639e8cc41619c85fc688d4 Mon Sep 17 00:00:00 2001 From: "Benjamin Scholtysik (Reimold)" Date: Mon, 13 Feb 2017 23:13:05 -0800 Subject: [PATCH] Update cocoapods section of readme --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0e77e526e2..958046f59c 100644 --- a/README.md +++ b/README.md @@ -245,16 +245,22 @@ pod "HockeySDK" #### 3.2.1 Binary Distribution Options -The default and recommended distribution is a binary (static library) and a resource bundle with translations and images for all SDK Features: Crash Reporting, User Feedback, Store Updates, Authentication, AdHoc Updates. +The default and recommended distribution is a binary (static library) and a resource bundle with translations and images for all SDK Features. -You can alternative use a Crash Reporting build only by using the following line in your `Podfile`: +```ruby +platform :ios, '8.0' +pod "HockeySDK" +``` -For the SDK with all features, add +Will integrate the *default* configuration of the SDK, with all features except the Feedback feature. + +For the SDK with all features, including Feedback, add ```ruby pod "HockeySDK", :subspecs => ['AllFeaturesLib'] ``` to your podfile. + To add the variant that only includes crash reporting, use ```ruby @@ -269,7 +275,7 @@ pod "HockeySDK", :subspecs => ['CrashOnlyExtensionsLib'] #### 3.2.2 Source Integration Options -Alternatively you can integrate the SDK by source if you want to do any modifications or want a different feature set. The following entry will integrate the SDK: +Alternatively you can integrate the SDK by source if you want to do modifications or want a different feature set. The following entry will integrate the SDK: ```ruby pod "HockeySDK-Source"