Airbridge supports third-party app store tracking. You can also create tracking links that redirect users to third-party app stores.
The instruction below involves SDK code changes. Reach out to your developer for the setup.
One Store App (e.g., https://onesto.re/0000747601
)
Huawei App Gallery App (e.g., https://appgallery.huawei.com/#/app/C103011503
)
Samsung Galaxy Store (e.g., https://apps.samsung.com/appquery/appDetail.as?appId=product.dp.io.ab180blog
)
In order to track and attribute to third-party app store, it requires having a 2.9.0 or later version of Airbridge Android SDK installed and a multi-store measurement setup.
From Android 11, when interacting with external apps, the SDK must specify which packages the app interacts with through the `<queries>` tag in `AndroidManifest.xml`.
To support this, refer to the below definitions to apply to the Airbridge Android SDK so that it can interact with One Store or Huawei Gallary.
XML
<manifest ...>
...
<queries>
<!-- Huawei App Gallery package names-->
<package android:name="com.huawei.hwid" />
<package android:name="com.huawei.appmarket" />
<!-- ONE Store package names -->
<package android:name="com.skt.skaf.A000Z00040" />
<package android:name="com.kt.olleh.storefront" />
<package android:name="com.kt.olleh.istore" />
<package android:name="com.lguplus.appstore" />
<package android:name="android.lgt.appstore" />
<!-- Samsung Galaxy Store package name -->
<package android:name="com.sec.android.app.samsungapps"/>
</queries>
...
</manifest>
`<queries>` tag requires version `4.1` or higher Android Gradle Plugin, and in case it's not possible to update version `4.1` or higher Android Gradle Plugin, it can be supported by updating patch versions as shown in the table below.
Read Preparing your Gradle build for package visibility in Android 11 for more detail.
Airbridge offers several options for the user's final destination. You can either send users to app markets regardless of app installs or send app-installed users to the app, and send the rest of the users to the app markets.
Go to [Tracking Link]>[Link Generation]>[Redirection Path] and select 'App Store' for the destination. Then, select Web URL for Android and input the desired app market address.
Go to [Tracking Link]>[Link Generation]>[Redirection Path] and select 'App (Deep Link)' and input your deep link.
Go to [Raw Data]>[App Real-time Logs] and select the event to check the app store tracking. If app market tracking is successfully set up, the appMarketIdentifier
will appear to the event log in the right window. (See image below)
Attribution data is available in the Actuals Report and raw data export file. Select the events and group by app store identifier to view the attribution data by app stores.
Ensure to use the One Store mobile-only website link format.
(e.g.https://onesto.re/0000747601)
The Desktop-only URL (https://onestore.co.kr/userpoc/apps/view?pid=0000747601), may fail the users to landing the One Store market.
Some redirection link types supported by Samsung Galaxy Store are unable to track because the referrer information cannot be collected. Please make sure to use the trackable link type for redirection.
Trackable Redirection Link Type
samsungapps://
https://apps.samsung.com/appquery/
Untrackable Redirection Link Type
https://galaxystore.samsung.com/
https://galaxy.store/
Was this page helpful?