Frage

I am using ADMS (omniture) library library in android, I want to enable the logs of request and response of omniture library, so that i can track what is exchanged with server, my custom app state is not visible in server reporting, I need to find where is the problem.

In ios omniture logs are printed on console, but how to enable logs in android. Any help is greatly welcomed... please help me.

I using the following code

ADMS_Measurement measurement = ADMS_Measurement.sharedInstance();
measurement.trackAppState(appState, contextData);
War es hilfreich?

Lösung

I found the solution

ADMS_Measurement measurement = ADMS_Measurement.sharedInstance(activity);
        measurement.setDebugLogging(true);
        measurement.configureMeasurement(TRACKING_RSID, TRACKING_SERVER);
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top