AS查看数据库

dependencies {

// Stetho core

compile 'com.facebook.stetho:stetho:1.3.1'

//If you want to add a network helper

compile 'com.facebook.stetho:stetho-okhttp3:1.3.1'

}


public class MyApplication extends Application {


    @Override

    public void onCreate() {

        super.onCreate();

        init();

    }


    private void init(){

        Stetho.initializeWithDefaults(this);

        new OkHttpClient.Builder()

                .addNetworkInterceptor(new StethoInterceptor())

                .build();

    }

}

接着运行app到手机上。

然后打开chrome,输入网址chrome://inspect

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。