@JMharo Looks like you're most of the way there!
When collecting mobile data for the Adobe Analytics tag through Tealium, you'll need to add the Tealium Android SDK to you app, as well as add the tag to you TiQ profile. We also recommend to add and enable the Lifecycle Module to collect lifecylce metrics.
The Tealium Android SDK + Lifecycle module automatically collect app & device data for you (see here & here). This data gets sent when trackEvent() or trackView() is called. The track calls trigger TiQ to bind the data in the Mappings and fire the Adobe tag. I'm not sure what data points are set up in your data mappings, but if your clients are expecting more data than what is already sent from the SDK, you'll need to add custom data to be sent to TiQ.
There are a few ways to send custom data.
1) You can pass a map with your data to a track call:
final Map<String, Object> data = new HashMap<>(); data.put("foo", "bar"); data.put("baz", new String[]{"foobaz", "foobar"}); instance.trackEvent("initialization", data);
*This data is sent with this single track call and is not sent on subsequent track calls.
2) You can add custom data to persistent data
SharedPreferences sp = instance.getDataSources().getPersistentDataSources(); sp.edit().putInt("foo", "bar").commit();
*These are lifetime values and get added to all track calls for the lifetime of the app.
3) Add data to volatile data
instance.getDataSources().getVolatileDataSources() .put(KEY_TEALIUM_INITIALIZED, System.currentTimeMillis());
*These are runtime values, and get added to all track calls for each app launch.
Please let us know if you require more help.
... View more