fix:更换sdk,修复bug

This commit is contained in:
barry
2026-06-06 16:55:32 +08:00
parent bd28506b1f
commit 7003140acc
565 changed files with 44334 additions and 43789 deletions
@@ -0,0 +1,19 @@
namespace AppsFlyerSDK
{
public interface IAppsFlyerValidateReceipt
{
/// <summary>
/// The success callback for validateAndSendInAppPurchase API.
/// For Android : the callback will return "Validate success".
/// For iOS : the callback will return a JSON string from apples verifyReceipt API.
/// </summary>
/// <param name="result"></param>
void didFinishValidateReceipt(string result);
/// <summary>
/// The error callback for validateAndSendInAppPurchase API.
/// </summary>
/// <param name="error">A string describing the error.</param>
void didFinishValidateReceiptWithError(string error);
}
}