adjust-icon

Store Type

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.

The SDK supports two methods for providing this store information:

Manifest metadata

You can define the store information as metadata in the app’s AndroidManifest.xml file. The Adjust SDK reads and tracks this information during its initialization.

To configure this, add the following entries inside the <application> tag of your AndroidManifest.xml file:

AndroidManifest.xml
<application>
...
<meta-data android:name="ADJUST_STORE_NAME" android:value="NameOfTheStore" />
<meta-data android:name="ADJUST_STORE_APP_ID" android:value="AppIdForTheStore" />
...
</application>

Configuration object

Alternatively, you can provide store information through the SDK’s configuration object.

To configure this, follow the steps below: