jgilfelt / chuck

An in-app HTTP inspector for Android OkHttp clients
Apache License 2.0
4.68k stars 452 forks source link

Not getting notifications #50

Open gastoncesarf opened 7 years ago

gastoncesarf commented 7 years ago

The project compiles perfectly, and when I use my application, no notification of each request appears. What should I check? What configuration do I need to do? I'm trying this on an emulator with api 24 (Android 7)

alorma commented 7 years ago

What's your app target / compile version?

memfis19 commented 6 years ago

Hi I have similar issue, but I have another versions: support library: 26.0.2 target version 16 build tools 26 chuck version 1.1.0

ldrrp commented 6 years ago

I came across this bug, having the same issue. The only reason i came across chuck is because i am having troubles getting any logging interceptor to work at all.

support library: 26.0.1 minSdkVersion 16 targetSdkVersion 25 buildToolsVersion '26.0.1' chuck version 1.1.0 okhttp version 3.9.0

        HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new HttpLoggingInterceptor.Logger() {
            @Override
            public void log(String message) {
                Log.e(TAG, message);
            }
        });
        logging.setLevel(HttpLoggingInterceptor.Level.BODY);

        return new OkHttpClient.Builder()
                .addInterceptor(new ChuckInterceptor(context))
                .addInterceptor(logging)
                .build();
nashihu commented 4 years ago

any update please?

nashihu commented 4 years ago

i think it's related to #93

Ashok-Varma commented 3 years ago

Hi @nashihu, This project is not maintained. You can try one of these forks

  1. Chucker - chuck + supports debug logs ..etc
  2. Gander - lean version of chuck