You can use the Adjust SDK to record information about the store from which an app was installed on a user’s device. Adjust supports a predefined list of store types defined here .
You can set the store information using the SDK configuration object. The Adjust SDK reads and tracks this data during initialization.
To configure this, follow the instructions below:
let yourAppToken = "YourAppToken"
let environment = ADJEnvironmentSandbox
let adjustConfig = ADJConfig (
environment : environment)
if let storeInfo = ADJStoreInfo ( storeName : "NameOfTheStore" ) {
storeInfo.storeAppId = "AppIdForTheStore"
adjustConfig ? .storeInfo = storeInfo
Adjust. initSdk (adjustConfig)
ADJConfig * adjustConfig = [[ADJConfig alloc ] initWithAppToken: @"YourAppToken"
environment: environment];
ADJStoreInfo * storeInfo = [[ADJStoreInfo alloc ] initWithStoreName: @"NameOfTheStore" ];
[storeInfo setStoreAppId: @"AppIdForTheStore" ];
[adjustConfig setStoreInfo: storeInfo];
[Adjust initSdk: adjustConfig];
var yourAppToken = yourAppToken;
var environment = AdjustConfig.EnvironmentSandbox;
var adjustConfig = new AdjustConfig (yourAppToken, environment);
var storeInfo = new AdjustStoreInfo ( "NameOfTheStore" );
storeInfo. setStoreAppId ( "AppIdForTheStore" );
adjustConfig. setStoreInfo (storeInfo);
Adjust. initSdk (adjustConfig);