-
Notifications
You must be signed in to change notification settings - Fork 11
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 #48 from AppsFlyerSDK/dev/DELIVERY-70570/update-to…
…-6.15.2 Dev/delivery 70570/update to 6.15.2
- Loading branch information
Showing
99 changed files
with
2,763 additions
and
187 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
} | ||
} |
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,15 @@ | ||
{ | ||
"images" : [ | ||
{ | ||
"filename" : "Icon-180.png", | ||
"idiom" : "universal" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
}, | ||
"properties" : { | ||
"template-rendering-intent" : "original" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,86 @@ | ||
// | ||
// AFSDKXPurchaseDetails.cpp | ||
// MyGame | ||
// | ||
// Created by ivan.obodovskyi on 02.10.2024. | ||
// | ||
|
||
#include <stdio.h> | ||
#include "AFSDKXPurchaseDetails.h" | ||
|
||
AFSDKXPurchaseDetails::AFSDKXPurchaseDetails(const AFXPurchaseType &purchaseType, | ||
const std::string &purchaseToken, | ||
const std::string &productId, | ||
const std::string &price, | ||
const std::string ¤cy, | ||
const std::string &transactionId) | ||
:purchaseType_(purchaseType), | ||
purchaseToken_(purchaseToken), | ||
productId_(productId), | ||
price_(price), | ||
currency_(currency), | ||
transactionId_(transactionId) { | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getProductId() const { | ||
return productId_; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setProductId(const std::string &productId) { | ||
productId_ = productId; | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getPrice() const { | ||
return price_; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setPrice(const std::string &price) { | ||
price_ = price; | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getCurrency() const { | ||
return currency_; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setCurrency(const std::string ¤cy) { | ||
currency_ = currency; | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getTransactionId() const { | ||
return transactionId_; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setTransactionId(const std::string &transactionId) { | ||
transactionId_ = transactionId; | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getPurchaseToken() const { | ||
return purchaseToken_; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setPurchaseToken(const std::string &purchaseToken) { | ||
purchaseToken_ = purchaseToken; | ||
} | ||
|
||
std::string AFSDKXPurchaseDetails::getPurchaseType() const { | ||
std::string purchaseTypeStr = purchaseTypeToString(); | ||
return purchaseTypeStr; | ||
} | ||
|
||
void AFSDKXPurchaseDetails::setPurchaseType(AFXPurchaseType &purchaseType) { | ||
purchaseType_ = purchaseType; | ||
} | ||
|
||
// Function to get the string value of the enum | ||
std::string AFSDKXPurchaseDetails::purchaseTypeToString() const{ | ||
switch (purchaseType_) { | ||
case AFXPurchaseType::SUBSCRIPTION: | ||
return "subscription"; | ||
case AFXPurchaseType::ONE_TIME_PURCHASE: | ||
return "one_time_purchase"; | ||
case AFXPurchaseType::APPLE: | ||
return ""; | ||
default: | ||
return ""; | ||
} | ||
} |
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,74 @@ | ||
// | ||
// AFSDKXPurchaseDetails.h | ||
// MyGame | ||
// | ||
// Created by ivan.obodovskyi on 02.10.2024. | ||
// | ||
|
||
#ifndef AFSDKXPurchaseDetails_h | ||
#define AFSDKXPurchaseDetails_h | ||
|
||
#include <string> | ||
#include "cocos2d.h" | ||
#include "AFSDKXValidateAndLogResult.h" | ||
|
||
enum class AFXPurchaseType { | ||
SUBSCRIPTION, | ||
ONE_TIME_PURCHASE, | ||
APPLE | ||
}; | ||
|
||
|
||
class AFSDKXPurchaseDetails { | ||
public: | ||
// Deleted default constructor to prevent usage. | ||
AFSDKXPurchaseDetails() = delete; | ||
|
||
// Constructor with parameters to initialize the properties. | ||
AFSDKXPurchaseDetails(const AFXPurchaseType &purchaseType, | ||
const std::string &purchaseToken, | ||
const std::string &productId, | ||
const std::string &price, | ||
const std::string ¤cy, | ||
const std::string &transactionId); | ||
|
||
// Default destructor. | ||
virtual ~AFSDKXPurchaseDetails() = default; | ||
|
||
// Public assignment and copy constructors | ||
AFSDKXPurchaseDetails(const AFSDKXPurchaseDetails &) = default; | ||
AFSDKXPurchaseDetails &operator=(const AFSDKXPurchaseDetails &) = default; | ||
|
||
// Getters and setters for private member variables. | ||
std::string getProductId() const; | ||
void setProductId(const std::string &productId); | ||
|
||
std::string getPrice() const; | ||
void setPrice(const std::string &price); | ||
|
||
std::string getCurrency() const; | ||
void setCurrency(const std::string ¤cy); | ||
|
||
std::string getTransactionId() const; | ||
void setTransactionId(const std::string &transactionId); | ||
|
||
// Propperties related to Android impl | ||
// For Apple implementation, please pass APPLE, it will be interpreted as an empty string | ||
std::string purchaseTypeToString() const; | ||
std::string getPurchaseType() const; | ||
void setPurchaseType(AFXPurchaseType &purchaseType); | ||
|
||
// Android purchase token, for iOS impl, please use empty string | ||
std::string getPurchaseToken() const; | ||
void setPurchaseToken(const std::string &purchaseToken); | ||
|
||
private: | ||
// Private member variables. | ||
std::string productId_; | ||
std::string price_; | ||
std::string currency_; | ||
std::string transactionId_; | ||
std::string purchaseToken_; | ||
AFXPurchaseType purchaseType_; | ||
}; | ||
#endif /* AFSDKXPurchaseDetails_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,50 @@ | ||
// | ||
// AFSDKXValidateAndLogResult.cpp | ||
// MyGame | ||
// | ||
// Created by ivan.obodovskyi on 03.10.2024. | ||
// | ||
|
||
#include <stdio.h> | ||
#include "AFSDKXValidateAndLogResult.h" | ||
|
||
// Constructor implementation. | ||
AFSDKXValidateAndLogResult::AFSDKXValidateAndLogResult( | ||
AFSDKXValidateAndLogStatus status, | ||
const cocos2d::ValueMap& result, | ||
const cocos2d::ValueMap& errorData, | ||
const cocos2d::ValueMap& error) | ||
: status_(status), result_(result), errorData_(errorData), error_(error) { | ||
} | ||
|
||
// Getter methods implementation. | ||
AFSDKXValidateAndLogStatus AFSDKXValidateAndLogResult::getStatus() const { | ||
return status_; | ||
} | ||
|
||
cocos2d::ValueMap AFSDKXValidateAndLogResult::getResult() const { | ||
return result_; | ||
} | ||
|
||
cocos2d::ValueMap AFSDKXValidateAndLogResult::getErrorData() const { | ||
return errorData_; | ||
} | ||
|
||
cocos2d::ValueMap AFSDKXValidateAndLogResult::getError() const { | ||
return error_; | ||
} | ||
|
||
// Function to map Objective-C enum to C++ enum | ||
AFSDKXValidateAndLogStatus AFSDKXValidateAndLogResult::objcEnumToCppEnum(int objcStatus) { | ||
switch (objcStatus) { | ||
case 0: | ||
return AFSDKXValidateAndLogStatus::Success; | ||
case 1: | ||
return AFSDKXValidateAndLogStatus::Failure; | ||
case 2: | ||
return AFSDKXValidateAndLogStatus::Error; | ||
default: | ||
// Handle unknown cases, or return a default value | ||
return AFSDKXValidateAndLogStatus::Error; | ||
} | ||
} |
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,54 @@ | ||
// | ||
// AFSDKXValidateAndLogResult.h | ||
// MyGame | ||
// | ||
// Created by ivan.obodovskyi on 03.10.2024. | ||
// | ||
|
||
#ifndef AFSDKXValidateAndLogResult_h | ||
#define AFSDKXValidateAndLogResult_h | ||
|
||
#include <cocos2d.h> | ||
#include <unordered_map> | ||
#include <string> | ||
#include <memory> | ||
#include <optional> | ||
|
||
// Assuming an error class similar to NSError exists in your C++ code. | ||
class Error; | ||
|
||
// Enum to represent validation status | ||
enum class AFSDKXValidateAndLogStatus { | ||
Success, | ||
Failure, | ||
Error | ||
}; | ||
|
||
class AFSDKXValidateAndLogResult { | ||
public: | ||
// Deleting default constructor to prevent usage. | ||
AFSDKXValidateAndLogResult() = delete; | ||
|
||
// Constructor with initialization list. | ||
AFSDKXValidateAndLogResult(AFSDKXValidateAndLogStatus status, | ||
const cocos2d::ValueMap& result, | ||
const cocos2d::ValueMap& errorData, | ||
const cocos2d::ValueMap& error); | ||
|
||
// Getter methods | ||
AFSDKXValidateAndLogStatus getStatus() const; | ||
static AFSDKXValidateAndLogStatus objcEnumToCppEnum(int objcStatus); | ||
cocos2d::ValueMap getResult() const; | ||
cocos2d::ValueMap getErrorData() const; | ||
cocos2d::ValueMap getError() const; | ||
|
||
|
||
private: | ||
// Member variables. | ||
AFSDKXValidateAndLogStatus status_; | ||
cocos2d::ValueMap result_; | ||
cocos2d::ValueMap errorData_; | ||
cocos2d::ValueMap error_; | ||
}; | ||
|
||
#endif /* AFSDKXValidateAndLogResult_h */ |
Oops, something went wrong.