diff --git a/Classes/BITUpdateManager.m b/Classes/BITUpdateManager.m
index 6204e1b242..7a512657aa 100644
--- a/Classes/BITUpdateManager.m
+++ b/Classes/BITUpdateManager.m
@@ -427,12 +427,15 @@ typedef NS_ENUM(NSInteger, BITUpdateAlertViewTag) {
}
- (void)saveAppCache {
- if (_companyName)
+ if (_companyName) {
[[NSUserDefaults standardUserDefaults] setObject:_companyName forKey:kBITUpdateCurrentCompanyName];
- if (_versionUUID)
+ }
+ if (_versionUUID) {
[[NSUserDefaults standardUserDefaults] setObject:_versionUUID forKey:kBITUpdateInstalledUUID];
- if (_versionID)
+ }
+ if (_versionID) {
[[NSUserDefaults standardUserDefaults] setObject:_versionID forKey:kBITUpdateInstalledVersionID];
+ }
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:self.appVersions];
[[NSUserDefaults standardUserDefaults] setObject:data forKey:kBITUpdateArrayOfLastCheck];
[[NSUserDefaults standardUserDefaults] synchronize];
diff --git a/README.md b/README.md
index 878ccdc54f..d336475fc1 100644
--- a/README.md
+++ b/README.md
@@ -432,7 +432,7 @@ This feature can be disabled manually as follows:
```objectivec
[[BITHockeyManager sharedHockeyManager] configureWithIdentifier:@"APP_IDENTIFIER"];
-[[BITHockeyManager sharedHockeyManager] setDisableUpdateManager: YES]; //disable crash reporting
+[[BITHockeyManager sharedHockeyManager] setDisableUpdateManager: YES]; //disable auto update
[[BITHockeyManager sharedHockeyManager] startManager];
```
@@ -469,7 +469,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
- - `de.bitstadium.HockeySDK-iOS-3.7.2.docset`
+ - `de.bitstadium.HockeySDK-iOS-3.8-Beta.1.docset`
3. Feature are not working as expected
diff --git a/Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist b/Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist
index 7623277712..855ff92038 100644
--- a/Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist
+++ b/Vendor/CrashReporter.framework/Versions/A/Resources/Info.plist
@@ -18,25 +18,21 @@
FMWK
CFBundleSignature
????
- CFBundleSupportedPlatforms
-
- MacOSX
-
CFBundleVersion
1.0
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
- 7A176x
+ 6E35b
DTPlatformVersion
GM
DTSDKBuild
- 15A244e
+ 14D125
DTSDKName
- macosx10.11
+ macosx10.10
DTXcode
- 0700
+ 0640
DTXcodeBuild
- 7A176x
+ 6E35b
diff --git a/docs/Changelog-template.md b/docs/Changelog-template.md
index 2bce1da993..d18411ad9a 100644
--- a/docs/Changelog-template.md
+++ b/docs/Changelog-template.md
@@ -9,6 +9,12 @@
- [UPDATE] Removed a few `#if __IPHONE_OS_VERSION_MAX_ALLOWED > __IPHONE_6_1` since iOS 7 or later is now required as base SDK
- [UPDATE] Use `UIAlertController` when available
+## Version 3.7.3
+
+- [BUGFIX] `BITCrashManager`: Updated PLCrashReporter build created with Xcode 6.4 to solve a duplicate symbol error some users are experiencing
+- [BUGFIX] `BITUpdateManager`: Fixed updating an app not triggering a crash report if `enableAppNotTerminatingCleanlyDetection` is enabled
+- [BUGFIX] Additional minor fixes
+
## Version 3.7.2
- [BUGFIX] `BITCrashManager`: Added workaround for a bug observed in iOS 9 beta's dyld triggering an infinite loop on startup
diff --git a/docs/Guide-Installation-Setup-template.md b/docs/Guide-Installation-Setup-template.md
index f9db9c80fc..bc32e46be6 100644
--- a/docs/Guide-Installation-Setup-template.md
+++ b/docs/Guide-Installation-Setup-template.md
@@ -453,7 +453,7 @@ Our documentation can be found on [HockeyApp](http://hockeyapp.net/help/sdk/ios/
Make sure none of the following files are copied into your app bundle, check under app target, `Build Phases`, `Copy Bundle Resources` or in the `.app` bundle after building:
- `HockeySDK.framework` (except if you build a dynamic framework version of the SDK yourself!)
- - `de.bitstadium.HockeySDK-iOS-3.7.2.docset`
+ - `de.bitstadium.HockeySDK-iOS-3.8-Beta.1.docset`
3. Feature are not working as expected