-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 5.8.3
- Loading branch information
Showing
10 changed files
with
104 additions
and
10 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
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 |
---|---|---|
|
@@ -97,4 +97,4 @@ SPEC CHECKSUMS: | |
|
||
PODFILE CHECKSUM: 578415250db59f137d92c9b1ce32646ae18974ba | ||
|
||
COCOAPODS: 1.11.3 | ||
COCOAPODS: 1.13.0 |
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
26 changes: 26 additions & 0 deletions
26
Sources/Qonversion/Qonversion/Main/QONRemoteConfigManager/QONRemoteConfigListRequestData.h
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,26 @@ | ||
// | ||
// QONRemoteConfigListRequestData.h | ||
// Qonversion | ||
// | ||
// Created by Kamo Spertsyan on 01.04.2024. | ||
// Copyright © 2024 Qonversion Inc. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "QONLaunchResult.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface QONRemoteConfigListRequestData : NSObject | ||
|
||
@property (nonatomic, copy, nullable) NSArray<NSString *> *contextKeys; | ||
@property (nonatomic, assign) BOOL includeEmptyContextKey; | ||
@property (nonatomic, copy, nonnull) QONRemoteConfigListCompletionHandler completion; | ||
|
||
- (instancetype)initWithCompletion:(QONRemoteConfigListCompletionHandler)completion; | ||
|
||
- (instancetype)initWithContextKeys:(NSArray<NSString *> *)contextKeys includeEmptyContextKey:(BOOL)includeEmptyContextKey completion:(QONRemoteConfigListCompletionHandler)completion; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
31 changes: 31 additions & 0 deletions
31
Sources/Qonversion/Qonversion/Main/QONRemoteConfigManager/QONRemoteConfigListRequestData.m
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,31 @@ | ||
// | ||
// QONRemoteConfigListRequestData.m | ||
// Qonversion | ||
// | ||
// Created by Kamo Spertsyan on 01.04.2024. | ||
// Copyright © 2024 Qonversion Inc. All rights reserved. | ||
// | ||
|
||
#import "QONRemoteConfigListRequestData.h" | ||
|
||
@implementation QONRemoteConfigListRequestData | ||
|
||
- (instancetype)initWithCompletion:(QONRemoteConfigListCompletionHandler)completion { | ||
self = [super init]; | ||
if (self) { | ||
_completion = completion; | ||
} | ||
return self; | ||
} | ||
|
||
- (instancetype)initWithContextKeys:(NSArray<NSString *> *)contextKeys includeEmptyContextKey:(BOOL)includeEmptyContextKey completion:(QONRemoteConfigListCompletionHandler)completion { | ||
self = [super init]; | ||
if (self) { | ||
_contextKeys = [contextKeys copy]; | ||
_includeEmptyContextKey = includeEmptyContextKey; | ||
_completion = completion; | ||
} | ||
return self; | ||
} | ||
|
||
@end |
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