-
Notifications
You must be signed in to change notification settings - Fork 344
0x00 QuickStart_zh_3_3_x
hui.zhao edited this page Mar 26, 2020
·
1 revision
在3.4.0以下版本,还需要一些额外的步骤
模块安装,GodEye类是AndroidGodEye的核心类,所有模块由它提供。
使用GodEye.instance().install(GodEyeConfig);
进行安装,建议在Application onCreate中:
if (ProcessUtils.isMainProcess(this)) {//install in main process
GodEye.instance().install(GodEyeConfig.fromAssets("assets path"));
}
install方法可以重复调用,每次调用会安装还未安装的模块
GodEyeConfig
有几种构建方式
- (一般使用方式)从XML类型assets目录安装
GodEyeConfig.fromAssets("assets path")
- 从XML类型的InputStream安装
GodEyeConfig.fromInputStream(InputStream)
- 默认配置
GodEyeConfig.defaultConfig()
XML样例:install.config
Uninstall方法会将目前已经安装的模块全部卸载,一般不需要调用
// 卸载已经安装的所有模块
GodEye.instance().uninstall();
GodEyeMonitor类是AndroidGodEye的性能可视化面板的主要类,用来开始或者停止性能可视化面板的监控。
开启性能可视化面板:
GodEyeMonitor.work(context)
GodEyeMonitor.shutDown()