Anti-cheat Methods
This generation of SDK is deprecated and is no longer supported. Information about the current version can be found here.
Validation of payments and time adjustments in devtodev SDK for iOS
Payments validation
To be protected from fraudulent transactions, we recommend you to use devtodev Anticheat service.
Use this method, and devtodev will check the transaction's validity with the payment platform, and the response will be returned to the application.
The result can take one of the following values:
In case of a successful check call the following main SDK method:
If the transaction hasn’t passed verification, do not perform the Payment event.
We do not recommend to use the result of devtodev anti-cheat verification as a condition for giving or not giving in-game currency or item purchased by a user!
Time cheats check
To check for time cheats call checkTime method every time when the app is being launched
The result can take one of the following values:
Validation of payments and time adjustments in devtodev SDK for Android
Payments validation
To be protected from fraudulent transactions, we recommend you to use devtodev Anticheat service
Use this method, and devtodev will check the transaction validity with the payment platform, and the response will be returned to the application.
Call following method when GooglePlay returns the transaction to your onActivityResult:
You can get sharedSecret key here:
Go to the Google Play Developer Console and sign in. Make sure that you sign in to the account from which the application you are licensing is published (or will be published).
In the application details page, locate the Services & APIs link and click it.
In the Services & APIs page, locate the Licensing & In-App Billing section.
Your public key for licensing is given in the Your License Key For This Application field.
The result can take one of the following values:
In case of a successful check call following the main SDK method:
If the transaction hasn’t passed verification, do not perform the Payment event.
We do not recommend to use the result of devtodev anti-cheat verification as a condition for giving or not giving in-game currency or item purchased by a user!
Time cheats check
To check for time cheats call checkTime method every time when the app is being launched
The result can take one of the following values:
Validation of payments and time adjustments in devtodev SDK for Unity
Payments validation
To be protected from fraudulent transactions, we recommend you to use devtodev Anticheat service.
Use this method, and devtodev will check the transaction validity with the payment platform, and the response will be returned to the application.
1. Call the method for payment verification:
or if you are using Unity IAP plugin:
where OnReceiptVerifyCallback is the function like this:
Here's how to find your application's public key for licensing (for Google Play platform only, for other platforms the publicKey is not used):
Go to the Google Play Console and sign in. Make sure that you sign in to the account from which the application you are licensing is published (or will be published).
In the application details page, locate the Services & APIs link and click it.
In the Services & APIs page, locate the Licensing & In-App Billing section. Your public key for licensing is given in the Your License Key For This Application field.
ReceiptVerificationStatus can take one of the following values:
Don't forget that it is enough to set only receipt field to check the payment on iOS (iTunes) or Windows/Windows Phone (Microsoft Store), and for Android (Google Play) the fields signature and publicKey should be set.
Сore SDK should be initialized prior to the call of VerifyPayment function.
2. In case of an unsuccessful check (ReceiptNotValid result) do not call SDK method RealPayment. In other cases:
Time cheats check
To check for time cheats call VerifyTime method.
1. Call the method to time verification:
where OnTimeVerifyCallback is the function like this:
DevToDevTimeVerificationStatus can take one of the following values:
Сore SDK should be initialized prior to the call of VerifyTime function.
Last updated