Migrate SDK configuration
For more information, see Configuring the Android SDK.
Medallia Experience Orchestration
list_alt
Application
class.import com.thunderhead.mobile.oneConfigure
import com.thunderhead.mobile.configuration.OneMode;
import com.thunderhead.mobile.One;
import com.thunderhead.mobile.configuration.OneConfiguration;
import com.thunderhead.mobile.configuration.OneMode;
import com.medallia.mxo.mxoConfigure
import com.medallia.mxo.configuration.MXOMode
import com.medallia.mxo.MedalliaMXO;
import com.medallia.mxo.configuration.MXOConfiguration;
import com.medallia.mxo.configuration.MXOMode;
onCreate
method of your Application
class:oneConfigure {
siteKey = SITE_KEY
apiKey = API_KEY
sharedSecret = SHARED_SECRET
userId = USER_ID
host = URI(HOST)
touchpoint = URI(TOUCHPOINT)
mode = OneMode.USER
}
final OneConfiguration oneConfiguration = new OneConfiguration.Builder()
.siteKey(siteKey)
.apiKey(apiKey)
.sharedSecret(sharedSecret)
.userId(userId)
.host(URI.create(host))
.touchpoint(URI.create(touchpointURI))
.mode(OneMode.USER)
.build();
One.setConfiguration(oneConfiguration);
For more information, see Configuring the Android SDK.
Medallia®, the Medallia logo, and the names and marks associated with Medallia’s products are trademarks of Medallia and/or its affiliates. All other trademarks are the property of their respective owners.