赞
踩
1.简介
Android平台开发开过程中Log信息的输出是使用非常频繁的,规范日志的打印非常重要。Logcat是在Android的Log基础上进封装,输出更多的信息,有效帮助工程师定位日志输出的类、行号。本文重点讲解Logcat工具的优点、如何导入Logcat工具到AS中。
2.工具优点
Android平台的Log日志工具非常繁多,甚至有的大型项目中各个模块存在多个Log日志工具,日志的输出方式也参差不齐。Logcat具有导入简单、代码精炼等特点。
3.工具的导入
平台:Android studio
文件:app的build.gradle文件中导入如下信息
3.1 Android studio 3.0以上
dependencies {
implementation 'com.github.androidUtils:Logcat:1.0.+'
}
3.2 Android studio 3.0以下
dependencies {
compile 'com.github.androidUtils:Logcat:1.0.+'
}
文件:Project的build.gradle文件中导入如下信息
allprojects {
- repositories {
- maven { url 'https://jitpack.io' }
- .......
- jcenter()
-
- }
- }
4.代码链接
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。