You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 19, 2020. It is now read-only.
@@ -80,7 +80,7 @@ From our experience, 3rd-party libraries usually reside inside a subdirectory (l
80
80
2. Add the following line at the top of the file below your own `import` statements:
81
81
82
82
```objectivec
83
-
@import HockeySDK
83
+
@import HockeySDK;
84
84
```
85
85
86
86
3. Search for the method `application:didFinishLaunchingWithOptions:`
@@ -179,20 +179,12 @@ You can alternative use a Crash Reporting build only by using the following line
179
179
180
180
#### 3.2.2 Source Integration Options
181
181
182
-
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 all features:
182
+
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:
183
183
184
184
```ruby
185
185
pod "HockeySDK-Source"
186
186
```
187
187
188
-
You can use `subspecs` to specify your own feature set using the following options: `CrashReporter`, `UserFeedback`, `StoreUpdates`, `Authenticator`, `AdHocUpdates`. An example could look like:
189
-
190
-
```ruby
191
-
pod "HockeySDK-Source", :subspecs => ['CrashReporter', 'UserFeedback']
192
-
```
193
-
194
-
*Note:* The source will not build without warnings in Xcode 7!
195
-
196
188
197
189
<aid="extensions"></a>
198
190
### 3.3 iOS 8 Extensions
@@ -446,7 +438,7 @@ To check if data is send properly to HockeyApp and also see some additional SDK
446
438
<a id="documentation"></a>
447
439
## 4. Documentation
448
440
449
-
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.7.0/index.html).
441
+
Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/3.7.1/index.html).
Copy file name to clipboardExpand all lines: docs/Changelog-template.md
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,20 @@
1
+
## Version 3.7.1
2
+
3
+
-[BUGFIX]`CocoaPods`: Fixes the default podspec with binary distribution
4
+
-[BUGFIX]`CocoaPods`: Changes `HockeySDK-Source` to use non configurable approach, since we couldn't make it work reliably in all scenarios
5
+
1
6
## Version 3.7.0
2
7
3
8
-[NEW] Simplified installation process. If support for modules is enabled in the target project (default for most projects), it’s no longer necessary to add the frameworks manually
4
9
-[NEW]`CocoaPods`: Default pod uses binary distribution and offers crash only build as a subspec
5
-
-[NEW]`CocoaPods`: New `HockeySDK-Source` pod integrates via source code and offers feature set customization via subspecs (We do not support building with Xcode 7 yet!)
10
+
-[NEW]`CocoaPods`: New `HockeySDK-Source` pod integrates via source code and offers feature set customization via subspecs. Note: We do not support building with Xcode 7 yet!
6
11
-[NEW]`BITCrashManager`: Added support for unhandled C++ exceptions (requires to link `libc++`)
12
+
-[NEW]`BITCrashManager`: Sending crash reports via `NSURLSession` whenever possible
7
13
-[NEW]`BITCrashManager`: Added process ID to `BITCrashDetails`
8
14
-[NEW]`BITCrashManager`: Added `CFBundleShortVersionString` value to crash reports
9
15
-[NEW]`BITFeedbackManager`: "Add Image" button in feedback compose view can now be hidden using `feedbackComposeHideImageAttachmentButton` property
10
-
-[NEW]`BITFeedbackManagerDelegate`: Added `allowAutomaticFetchingForNewFeedbackForManager:` to define if the SDK should fetch for new messages on app startup and when the app is coming into foreground.
-[NEW]`BITFeedbackManagerDelegate`: Added `allowAutomaticFetchingForNewFeedbackForManager:` to define if the SDK should fetch new messages on app startup and when the app is coming into foreground.
17
+
-[NEW] Added disableInstallTracking property to disable installation tracking (AppStore only).
12
18
-[UPDATE] Restructured installation documentation
13
19
-[BUGFIX]`BITCrashManager`: Fixed offline issue showing crash alert over and over again with unsent crash reports
14
20
-[BUGFIX]`BITFeedbackManager`: Improved screenshot handling on slow devices
4. Add the following lines to setup and start the Application Insights SDK:
@@ -162,20 +163,12 @@ You can alternative use a Crash Reporting build only by using the following line
162
163
163
164
#### 3.2.2 Source Integration Options
164
165
165
-
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 all features:
166
+
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:
166
167
167
168
```ruby
168
169
pod "HockeySDK-Source"
169
170
```
170
171
171
-
You can use `subspecs` to specify your own feature set using the following options: `CrashReporter`, `UserFeedback`, `StoreUpdates`, `Authenticator`, `AdHocUpdates`. An example could look like:
172
-
173
-
```ruby
174
-
pod "HockeySDK-Source", :subspecs => ['CrashReporter', 'UserFeedback']
175
-
```
176
-
177
-
*Note:* The source will not build without warnings in Xcode 7!
178
-
179
172
180
173
<aid="extensions"></a>
181
174
### 3.3 iOS 8 Extensions
@@ -335,6 +328,8 @@ The `BITHockeyManagerDelegate` protocol provides methods to add additional data
335
328
The `BITCrashManagerDelegate` protocol (which is automatically included in `BITHockeyManagerDelegate`) provides methods to add more crash specific data to a crash report:
336
329
337
330
1. Text attachments: `-(NSString *)applicationLogForCrashManager:(BITCrashManager *)crashManager`
331
+
332
+
Check the following tutorial for an example on how to add CocoaLumberjack log data: [How to Add Application Specific Log Data on iOS or OS X](http://support.hockeyapp.net/kb/client-integration-ios-mac-os-x/how-to-add-application-specific-log-data-on-ios-or-os-x)
@@ -411,10 +406,23 @@ This feature can be disabled manually as follows:
411
406
412
407
If you want to see beta analytics, use the beta distribution feature with in-app updates, restrict versions to specific users, or want to know who is actually testing your app, you need to follow the instructions on our guide [Authenticating Users on iOS](http://support.hockeyapp.net/kb/client-integration-ios-mac-os-x/authenticating-users-on-ios)
413
408
409
+
<a id="debug"></a>
410
+
### 3.9 Debug information
411
+
412
+
To check if data is send properly to HockeyApp and also see some additional SDK debug log data in the console, add the following line before `startManager`:
0 commit comments