Last update : 18/06/2026
Release version : 5
- Android Developers' Implementation Guide
- Introduction
- Latest available versions
- Adding a module to your project
- Support and contacts
TagCommander for mobile is a collection of small SDKs each designed to serve a dedicated purpose.
| Module | Purpose | Documentation |
|---|---|---|
| Core | Base module required by all others | Core README |
| ServerSide | Tag management via server-side data collection | ServerSide README |
| Consent | Privacy & consent management | Consent README |
| IAB | IAB TCF v2 consent string support | IAB README |
| FirebaseDestination | Firebase Analytics destination | Firebase README |
Note
The Core module is always required regardless of which other modules you use.
Core : 5.5.0
ServerSide : 5.6.0
Consent : 5.4.0
IAB : 5.1.1
Partners : 5.0.1
FirebaseDestination : 5.1.4
Minimum Android SDK version: 21
Both methods require modifying your build.gradle. The Core module must always be included.
The recommended approach. Keeps modules up to date with minimal effort.
Add mavenCentral() to your project's build.gradle if not already present:
allprojects {
repositories {
mavenCentral()
}
}
Then in your application's build.gradle, always add Core first:
implementation 'com.tagcommander.lib:core:5.5.0'
Add any other modules you need the same way. See each module's documentation for details.
Example:
implementation 'com.tagcommander.lib:ServerSide:5.6.0'
Download from: https://github.com/CommandersAct/AndroidV5
Note
You will always need to at least add the Core module to your project.
Add flatDir to your project's build.gradle:
allprojects {
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
}
Then reference the modules in your application's build.gradle:
compile (name:'TCCore-release-5.5.0', ext:'aar')
compile (name:'TCServerSide-release-5.6.0', ext:'aar')
compile (name:'TCConsent-release-5.4.0', ext:'aar')
A full working example integrating our libraries:
https://github.com/CommandersAct/tcmobiledemo-v5
Support support@commandersact.com
Commanders Act | 25 rue de Tolbiac, 75013 Paris - France
This documentation was generated on 18/06/2026 09:00:32
