Skip to content

Latest commit

 

History

History
58 lines (32 loc) · 964 Bytes

Timber.md

File metadata and controls

58 lines (32 loc) · 964 Bytes

目录

前言

图片名称
  • 技术选型
  • 组件化设计
  • 本地Maven (nexus)简单使用
  • 自动打包(Jenkins持续集成)
  • 单元测试-
  • 线上Bug快速修复(热修复)
  • ReactNative-Android 的简单实践
  • 阿里Atlas(插件化)与该项目的简单实践

集android技术于一体,你们想要的都在这里

特点:

整合了timber和logger日志框架,一行代码初始化,debug打印日志,release异步保存错误日志到指定的位置.

Step 1. 在根目录的gradle文件中配置

allprojects {
		repositories {
			...
			 jcenter()
		}
	}

step2 添加依赖(By 3.0):

dependencies {

       api 'com.dhc.timberhelper:timberhelper:1.0.0'
}