I am trying to test an Android app and I am getting events queued, but never dispatching. In the decompiled class file, I am getting to: dispatch_queue_debug_queued_dispatcher_not_ready Which appears to be why I am not dispatching immediately. PublishSettings: {
battery_saver : true,
dispatch_expiration : -1.0,
enable_collect : false,
enable_s2s_legacy : false,
enable_tag_management : false,
event_batch_size : 1,
minutes_between_refresh : 15.0,
offline_dispatch_limit : 100,
override_log : "no override",
wifi_only_sending : false
} val tealiumConfig = TealiumLib.Config.create(
app,
ACCOUNT_NAME,
PROFILE_NAME,
"dev"
)
tealiumConfig.datasourceId = DATASOURCE_ID
tealiumConfig.forceOverrideLogLevel = "dev"
LifeCycle.setupInstance(INSTANCE_ID, tealiumConfig, true)
instance = TealiumLib.createInstance(INSTANCE_ID, tealiumConfig)
instance.trackEvent("test-event", mapOf()) Any ideas? Also is the Android SDK source code available to help with debugging?
... View more