문제

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);
도움이 되었습니까?

해결책

I found the solution

ADMS_Measurement measurement = ADMS_Measurement.sharedInstance(activity);
        measurement.setDebugLogging(true);
        measurement.configureMeasurement(TRACKING_RSID, TRACKING_SERVER);
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top