美文网首页
AS查看数据库

AS查看数据库

作者: 起点_882d | 来源:发表于2020-10-12 13:45 被阅读0次

    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

    相关文章

      网友评论

          本文标题:AS查看数据库

          本文链接:https://www.haomeiwen.com/subject/zxwupktx.html