Ezalor is a io monitor library for Android, it support record all io operations. You can get the performance of each io operation.
Add dependencies by adding the following lines to your app/build.gradle.
dependencies {
//ezalor lib
compile 'com.wellerv.ezalor:ezalor:0.1.0'
}
Then you should init the ezalor in your application.
public class SampleApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Ezalor.get().init(this);
}
}
Given that it is just a tool for your application, I recommend that it be used for the debug version.
Ezalor now supports excel export via EzalorTools.
Before you initialize ezalor, the application must have sdcard write permission.
Any problem?