Skip to content

inpyokim/logcatviewer

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LogcatViewer library

Feature:

  • Priority filter
  • Clear logcat
  • Export as file
  • Floating window

Integrate guide

  1. Clone this library as a project module, add module dependence.

  2. Add following code to your AndroidManifest.xml

    <application>
    	...  
    	<provider
    		android:name="com.github.logviewer.LogcatFileProvider"
    		android:authorities="${applicationId}.logcat_fileprovider"
    		android:grantUriPermissions="true"
    		android:exported="false">
    		<meta-data
    			android:name="android.support.FILE_PROVIDER_PATHS"
    			android:resource="@xml/logcat_filepaths" />
    	</provider>
    </application>
  3. Add launch code in your code:

    public void launchLogcatViewer() {
    	LogcatActivity.launch(getContext());
    }

Screenshot

About

Android Logcat viewer for debug usage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%