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,輸入網(wǎng)址chrome://inspect