Skip to content

Commit

Permalink
Release 4.5.14
Browse files Browse the repository at this point in the history
  • Loading branch information
王洋洋 committed Aug 4, 2023
1 parent 8236298 commit eab2732
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ iOS 9.0 及以上,Xcode 9.0 及以上。

## 新书推荐

| 《数据驱动:从方法到实践》 | 《Android 全埋点解决方案》 | 《iOS 全埋点解决方案》
| ------ | ------ | ------ |
| [![《数据驱动:从方法到实践》](https://opensource.sensorsdata.cn/wp-content/uploads/data_driven_book_1.jpg)](https://item.jd.com/12322322.html) | [![《Android 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/Android-全埋点thumbnail_1.png)](https://item.jd.com/12574672.html) | [![《iOS 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/iOS-全埋点thumbnail_1.png)](https://item.jd.com/12867068.html)
| 《ASM 全埋点开发实战》 | 《数据驱动:从方法到实践》 | 《Android 全埋点解决方案》 | 《iOS 全埋点解决方案》
| ------ | ------ | ------ | ------ |
| [![ASM 全埋点开发实战》](https://opensource.sensorsdata.cn/wp-content/uploads/ASM-全埋点thumbnail_1.jpg)](https://item.jd.com/14058352.html) | [![数据驱动:从方法到实践》](https://opensource.sensorsdata.cn/wp-content/uploads/data_driven_book_1.jpg)](https://item.jd.com/12322322.html) | [![《Android 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/Android-全埋点thumbnail_1.png)](https://item.jd.com/12574672.html) | [![《iOS 全埋点解决方案》](https://opensource.sensorsdata.cn/wp-content/uploads/iOS-全埋点thumbnail_1.png)](https://item.jd.com/12867068.html)


## 感谢
Expand Down
2 changes: 1 addition & 1 deletion SensorsAnalyticsSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SensorsAnalyticsSDK"
s.version = "4.5.13"
s.version = "4.5.14"
s.summary = "The official iOS SDK of Sensors Analytics."
s.homepage = "http://www.sensorsdata.cn"
s.source = { :git => 'https://github.com/sensorsdata/sa-sdk-ios.git', :tag => "v#{s.version}" }
Expand Down
2 changes: 1 addition & 1 deletion SensorsAnalyticsSDK/Core/SensorsAnalyticsSDK.m
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
#import "SALimitKeyManager.h"
#import "NSDictionary+SACopyProperties.h"

#define VERSION @"4.5.13"
#define VERSION @"4.5.14"

void *SensorsAnalyticsQueueTag = &SensorsAnalyticsQueueTag;

Expand Down
4 changes: 3 additions & 1 deletion SensorsAnalyticsSDK/Deeplink/SADeepLinkProcessor.m
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,11 @@ - (NSString *)appInstallSource {
- (void)trackDeepLinkLaunch:(NSDictionary *)properties {
SADeepLinkLaunchEventObject *object = [[SADeepLinkLaunchEventObject alloc] initWithEventId:kSAAppDeepLinkLaunchEvent];
NSMutableDictionary *eventProperties = [NSMutableDictionary dictionary];
[eventProperties addEntriesFromDictionary:properties];
eventProperties[kSAEventPropertyDeepLinkURL] = self.URL.absoluteString;
eventProperties[kSAEventPropertyInstallSource] = [self appInstallSource];
if (properties) {
[eventProperties addEntriesFromDictionary:properties];
}
[SensorsAnalyticsSDK.sharedInstance trackEventObject:object properties:eventProperties];
}

Expand Down
2 changes: 1 addition & 1 deletion SensorsAnalyticsSDK/Deeplink/SADeeplinkManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ - (void)trackDeepLinkLaunchWithURL:(NSString *)url {
return;
}
SADeepLinkEventProcessor *processor = [[SADeepLinkEventProcessor alloc] init];
[processor startWithProperties:nil];
[processor startWithProperties:(url ? @{kSAEventPropertyDeepLinkURL: url} : nil)];
}

- (void)requestDeferredDeepLink:(NSDictionary *)properties {
Expand Down

0 comments on commit eab2732

Please sign in to comment.