File tree 8 files changed +16
-10
lines changed
8 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "Adjust"
3
- s . version = "4.38.0 "
3
+ s . version = "4.38.1 "
4
4
s . summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
5
5
s . homepage = "https://github.com/adjust/ios_sdk"
6
6
s . license = { :type => 'MIT' , :file => 'MIT-LICENSE' }
7
7
s . author = { "Adjust" => "[email protected] " }
8
- s . source = { :git => "https://github.com/adjust/ios_sdk.git" , :tag => "v4.38.0 " }
8
+ s . source = { :git => "https://github.com/adjust/ios_sdk.git" , :tag => "v4.38.1 " }
9
9
s . ios . deployment_target = '9.0'
10
10
s . tvos . deployment_target = '9.0'
11
11
s . framework = 'SystemConfiguration'
Original file line number Diff line number Diff line change 16
16
- (instancetype )initWithUrlStrategyInfo : (NSString *)urlStrategyInfo
17
17
extraPath : (NSString *)extraPath ;
18
18
19
- - (nonnull NSString *)urlForActivityKind : (ADJActivityKind)activityKind
20
- isConsentGiven : (BOOL )isConsentGiven
21
- withSendingParams : (NSMutableDictionary *)sendingParams ;
19
+ - (NSString *)urlForActivityKind : (ADJActivityKind)activityKind
20
+ isConsentGiven : (BOOL )isConsentGiven
21
+ withSendingParams : (NSMutableDictionary *)sendingParams ;
22
22
23
23
- (void )resetAfterSuccess ;
24
24
- (BOOL )shouldRetryAfterFailure : (ADJActivityKind)activityKind ;
Original file line number Diff line number Diff line change @@ -144,6 +144,6 @@ typedef void (^isInactiveInjected)(BOOL);
144
144
+ (BOOL )shouldUseConsentParamsForActivityKind : (ADJActivityKind)activityKind ;
145
145
146
146
+ (BOOL )shouldUseConsentParamsForActivityKind : (ADJActivityKind)activityKind
147
- andAttStatus : (nullable NSString *)attStatusString ;
147
+ andAttStatus : (NSString *)attStatusString ;
148
148
149
149
@end
Original file line number Diff line number Diff line change 35
35
static NSRegularExpression *shortUniversalLinkRegex = nil ;
36
36
static NSRegularExpression *excludedDeeplinkRegex = nil ;
37
37
38
- static NSString * const kClientSdk = @" ios4.38.0 " ;
38
+ static NSString * const kClientSdk = @" ios4.38.1 " ;
39
39
static NSString * const kDeeplinkParam = @" deep_link=" ;
40
40
static NSString * const kSchemeDelimiter = @" ://" ;
41
41
static NSString * const kDefaultScheme = @" AdjustUniversalScheme" ;
Original file line number Diff line number Diff line change 2
2
// Adjust.h
3
3
// Adjust SDK
4
4
//
5
- // V4.38.0
5
+ // V4.38.1
6
6
// Created by Christian Wellenbrock (@wellle) on 23rd July 2013.
7
7
// Copyright (c) 2012-2021 Adjust GmbH. All rights reserved.
8
8
//
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ + (NSString *)adjust_js {
280
280
if (this.sdkPrefix ) {
281
281
return this.sdkPrefix ;
282
282
} else {
283
- return ' web-bridge4.38.0 ' ;
283
+ return ' web-bridge4.38.1 ' ;
284
284
}
285
285
},
286
286
setTestOptions: function (testOptions) {
Original file line number Diff line number Diff line change
1
+ ### Version 4.38.1 (10th April 2024)
2
+ #### Fixed
3
+ - Removed nullability type specifier warnings (https://github.com/adjust/ios_sdk/issues/703 ).
4
+
5
+ ---
6
+
1
7
### Version 4.38.0 (22nd March 2024)
2
8
#### Added
3
9
- Added Privacy Manifest for the Adjust SDK.
Original file line number Diff line number Diff line change 1
- 4.38.0
1
+ 4.38.1
You can’t perform that action at this time.
0 commit comments