chuck
chuck copied to clipboard
Not getting notifications
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)
What's your app target / compile version?
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
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();
any update please?
i think it's related to #93