Back to project page SendLog.
The source code is released under:
Apache License
If you think the Android project SendLog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.l6n.sendlog.library; //from w w w.j ava 2s. c o m import java.io.File; public interface ISendLog { String[] getCommands(); String getFooter(); File getNonSdCardFolder(); void finished(File file); void error(Exception e); boolean hasReadLogsPermission(); String getNoPermissionMessage(); String getBadExitCodeMessage(); }