Stetho已经用了三四年了,一直没有好好的介绍过你,很抱歉!今天给你正名“神器”
集成:
implementation 'com.facebook.stetho:stetho:1.5.1'
or Maven:
<dependency>
<groupId>com.facebook.stetho</groupId>
<artifactId>stetho</artifactId>
<version>1.5.1</version>
</dependency>
在MyApplication注册:
public class MyApplication extends Application {
public void onCreate() {
super.onCreate();
Stetho.initializeWithDefaults(this);
}
}
项目运行成功之后,在Chrome输入
chrome://inspect/#devices
点击inspect查看数据库
到这里就结束了!!!