-
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.
Merge pull request #75 from qonversion/release/2.3.0
Release/2.3.0
- Loading branch information
Showing
13 changed files
with
183 additions
and
37 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
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
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,16 @@ | ||
// | ||
// QNAPIConstants.h | ||
// Qonversion | ||
// | ||
// Created by Surik Sarkisyan on 28.09.2020. | ||
// Copyright © 2020 Qonversion Inc. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
extern NSString *const kAPIBase; | ||
extern NSString *const kInitEndpoint; | ||
extern NSString *const kPurchaseEndpoint; | ||
extern NSString *const kPropertiesEndpoint; | ||
extern NSString *const kAttributionEndpoint; | ||
extern NSString *const kStoredRequestsKey; |
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,19 @@ | ||
// | ||
// QNAPIConstants.m | ||
// Qonversion | ||
// | ||
// Created by Surik Sarkisyan on 28.09.2020. | ||
// Copyright © 2020 Qonversion Inc. All rights reserved. | ||
// | ||
|
||
#import "QNAPIConstants.h" | ||
|
||
NSString * const kAPIBase = @"https://api.qonversion.io/"; | ||
NSString * const kInitEndpoint = @"v1/user/init"; | ||
NSString * const kPurchaseEndpoint = @"v1/user/purchase"; | ||
NSString * const kPropertiesEndpoint = @"v1/properties"; | ||
|
||
|
||
NSString * const kAttributionEndpoint = @"attribution"; | ||
|
||
NSString * const kStoredRequestsKey = @"storedRequests"; |
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.