Back to project page logcatgrabber.
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.
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(); } }