How to create/define Adob Omniture (adob analytics) ADBMobileConfig.json file for android

StackOverflow https://stackoverflow.com/questions/22665117

  •  21-06-2023
  •  | 
  •  

Question

I am trying to integrate Adob Omniture analytics (Adobe Marketing Cloud) in my android application. I just want to know that, how I can configure ADBMobileConfig.json file, any guidance link. How to define value of this in json file

{
Analytics: rsids and server,
Target: clientCode,
Audience Management: server
}

Right now my json file is like this

{
    "version" : "1.0",
    "analytics" : {
        "rsids" : "",
        "server" : "",
        "charset" : "UTF-8",
        "ssl" : false,
        "offlineEnabled" : false,
        "lifecycleTimeout" : 300,
        "batchLimit" : 0,
        "privacyDefault" : "optedin",
        "poi" : []
    },
    "target" : {
        "clientCode" : "",
        "timeout" : 2
    },
    "audienceManager" : {
        "server" : ""
    }
}

How can I implement this?

Was it helpful?

Solution

Config reference: http://microsite.omniture.com/t2/help/en_US/mobile/android/#Adobe_Mobile_Class_and_Method_Reference

developer.omniture.com has just about everything you'd need to get going.

OTHER TIPS

The link in BrettAHale's answer is unfortunately dead. After spending way too much time hunting through Adobe Marketing's ill-conceived site, Google finally found a PDF documenting the config file:

https://marketing.adobe.com/resources/help/en_US/mobile/android/android_mobile_4x.pdf

Locating the values to plug in from the Adobe Analytics (Omniture) account is another challenge all unto itself. Anyone with experience wading through that morass please do share.

Based on Adobe's past behavior, that link will likely die a horrible death as well. Might want to save that and keep it somewhere safe.

PS: For posterity http://s000.tinyupload.com/index.php?file_id=00262289428317514323

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top