I develop a kind of casino application, and users can win real cash on it. To avoid fraud we need to check that user only use one device at the same time.
When I look to Android doc about how to identify device : https://developer.android.com/training/articles/user-data-ids#best-practices-android-identifier:
Use a Firebase installation ID (FID) or a privately stored GUID whenever possible for all other use cases, except for payment fraud prevention and telephony. For the vast majority of non-ads use cases, an FID or GUID should be sufficient.
So doc says :
- to use FID or GUID except for payment fraud (which is my case)
- to avoid using hardware identifiers such as IMEI or DEVICE_ID
So what're best practices for fraud ?