-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from adjust/v503
Version 5.0.3
- Loading branch information
Showing
28 changed files
with
118 additions
and
347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[submodule "ext/android/sdk"] | ||
path = ext/android/sdk | ||
url = [email protected]:adjust/android_sdk.git | ||
branch = master | ||
[submodule "ext/ios/sdk"] | ||
path = ext/ios/sdk | ||
url = [email protected]:adjust/ios_sdk.git | ||
branch = master | ||
url = https://github.com/adjust/ios_sdk.git | ||
[submodule "ext/android/sdk"] | ||
path = ext/android/sdk | ||
url = https://github.com/adjust/android_sdk.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// | ||
// ATLNetworking.h | ||
// AdjustTestLibrary | ||
// | ||
// Created by Pedro Silva on 24.05.24. | ||
// Copyright © 2024 adjust. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface ATLHttpResponse : NSObject | ||
|
||
@property (nonatomic, nullable, strong) NSString * responseString; | ||
@property (nonatomic, nullable, strong) id jsonFoundation; | ||
@property (nonatomic, nullable, strong) NSDictionary *headerFields; | ||
@property (nonatomic, assign) NSInteger statusCode; | ||
|
||
@end | ||
|
||
@interface ATLHttpRequest : NSObject | ||
|
||
@property (nonatomic, nonnull, readonly, strong) NSString *path; | ||
@property (nonatomic, nullable, readonly, strong) NSString *base; | ||
@property (nonatomic, nullable, strong) NSString *bodyString; | ||
@property (nonatomic, nullable, strong) NSDictionary *headerFields; | ||
|
||
- (nonnull id)initWithPath:(nonnull NSString *)path | ||
base:(nullable NSString *)base; | ||
@end | ||
|
||
typedef void (^httpResponseHandler)(ATLHttpResponse *_Nonnull httpResponse); | ||
|
||
@interface ATLNetworking : NSObject | ||
|
||
- (void)sendPostRequestWithData:(nonnull ATLHttpRequest *)requestData | ||
baseUrl:(nonnull NSURL *)baseUrl | ||
responseHandler:(nonnull httpResponseHandler)responseHandler; | ||
|
||
@end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.