Android Open Source - logcatgrabber Application Logcat Grabber






From Project

Back to project page logcatgrabber.

License

The source code is released under:

MIT License

If you think the Android project logcatgrabber listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.saltydog.logcatgrabber;
/*w w w .ja  v a 2  s  .c  o m*/
import android.app.Application;

/**
 * Created by saltydog on 11/3/14.
 */
public class ApplicationLogcatGrabber extends Application {

  @Override
  public void onCreate() {
    super.onCreate();

    LogcatGrabber.initialize(getApplicationContext());
    LogcatGrabber.instance().startCaptureLogFile();
  }
}




Java Source Code List

com.saltydog.logcatgrabber.ActivityLogcatGrabber.java
com.saltydog.logcatgrabber.ApplicationLogcatGrabber.java
com.saltydog.logcatgrabber.ApplicationTest.java
com.saltydog.logcatgrabber.LogcatGrabber.java