I have to test one app using xamarin profiler. In xamarin profiler is there any option for export the logs? and possible to filter unwanted logs(System logs). and how to calculate application response time from one activity to another activity? any help is appreciated?
I dont think so that there is a way to export the logs.
About counting from one activity to another use the App class below to implement helpful methods that count the interval because 2 activities
using System;
using Android.App;
using Android.Runtime;
namespace Appname
{
[Application]
public class App : Application
{
public App (IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
{
}
public override void OnCreate ()
{
base.OnCreate ();
}
}
}
On the call of the 2nd activity and after the start of the 2nd activity measure the time with something like this: On the call:
DateTime startTime = DateTime.UtcNow;
after the start of the 2nd activity:
TimeSpan elapsedTime = DateTime.UtcNow - startTime;