setParameterTamperingProtectionSalt method

CountlyConfig setParameterTamperingProtectionSalt(
  1. String salt
)

Set the optional salt to be used for calculating the checksum of requested data which will be sent with each request, using the &checksum field

Implementation

CountlyConfig setParameterTamperingProtectionSalt(String salt) {
  _tamperingProtectionSalt = salt;
  return this;
}