void ConfigureGoogleFraudDetection(IGooglePlayConfiguration googlePlayConfiguration)
        {
            //To make sure the account id and profile id do not contain personally identifiable information, we obfuscate this information by hashing it.
            var obfuscatedAccountId = HashString(user.AccountId);
            var obfuscatedProfileId = HashString(user.ProfileId);

            googlePlayConfiguration.SetObfuscatedAccountId(obfuscatedAccountId);
            googlePlayConfiguration.SetObfuscatedProfileId(obfuscatedProfileId);
        }
 void BindGoogleConfiguration(IGooglePlayConfiguration googlePlayConfiguration)
 {
     BindConfiguration(googlePlayConfiguration);
 }