Skip to content

Commit

Permalink
Merge pull request #491 from adjust/v4250
Browse files Browse the repository at this point in the history
Version 4.25.0
  • Loading branch information
uerceg authored Jan 16, 2021
2 parents 66dc383 + b094e89 commit ddf1824
Show file tree
Hide file tree
Showing 56 changed files with 1,154 additions and 49 deletions.
4 changes: 2 additions & 2 deletions Adjust.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "Adjust"
s.version = "4.24.0"
s.version = "4.25.0"
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
s.homepage = "https://github.com/adjust/ios_sdk"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
s.author = { "Christian Wellenbrock" => "[email protected]" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.24.0" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.25.0" }
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
52 changes: 46 additions & 6 deletions Adjust.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Adjust/ADJActivityHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#import "ADJActivityState.h"
#import "ADJDeviceInfo.h"
#import "ADJSessionParameters.h"
#import "ADJThirdPartySharing.h"

@interface ADJInternalState : NSObject

Expand Down Expand Up @@ -45,6 +46,8 @@
@property (nonatomic, copy) NSNumber *enabled;
@property (nonatomic, assign) BOOL offline;
@property (nonatomic, copy) NSString *extraPath;
@property (nonatomic, strong) NSMutableArray *preLaunchAdjustThirdPartySharingArray;
@property (nonatomic, copy) NSNumber *lastMeasurementConsentTracked;

- (id)init;

Expand Down Expand Up @@ -86,6 +89,8 @@
- (BOOL)updateAttributionI:(id<ADJActivityHandler>)selfI attribution:(ADJAttribution *)attribution;
- (void)setAttributionDetails:(NSDictionary *)attributionDetails
error:(NSError *)error;
- (void)setAdServicesAttributionToken:(NSString *)token
error:(NSError *)error;

- (void)setOfflineMode:(BOOL)offline;
- (void)sendFirstPackages;
Expand All @@ -100,6 +105,8 @@
- (void)resetSessionPartnerParameters;
- (void)trackAdRevenue:(NSString *)soruce payload:(NSData *)payload;
- (void)disableThirdPartySharing;
- (void)trackThirdPartySharing:(nonnull ADJThirdPartySharing *)thirdPartySharing;
- (void)trackMeasurementConsent:(BOOL)enabled;
- (void)trackSubscription:(ADJSubscription *)subscription;
- (void)updateAttStatusFromUserCallback:(int)newAttStatusFromUser;

Expand Down
Loading

0 comments on commit ddf1824

Please sign in to comment.