Chucker library not working for Android 13
See original GitHub issue✍️ Describe the bug
Chucker library not working for Android 13
💣 Steps to reproduce
Reproduce the behavior:
- Update the compileSDK and targetSDK version to 33
- Add chucker dependency in build.gradle
implementation "com.github.chuckerteam.chucker:library:3.5.2"
- Add below code in your OkHttpClient builder
ChuckerCollector chuckerCollector = new ChuckerCollector(context, true, RetentionManager.Period.ONE_HOUR); ChuckerInterceptor chuckerInterceptor = new ChuckerInterceptor.Builder(context) .collector(chuckerCollector) .maxContentLength(250_000L) .alwaysReadResponseBody(true) .build();
🔧 Expected behavior
When the app is launched, the network logs should get displayed on the notification panel
:Android: Tech info
- Device: Pixel 4 XL
- OS: Android 13
- Chucker version: 3.5.2
📄 Additional context
Chucker library was working fine till Android 12. After upgrading the app to Android 13, I am not getting the http logs.
Is it supporting Android 13 or not ?
If it’s supporting then how to integrate it.
Issue Analytics
- State:
- Created a year ago
- Comments:13 (1 by maintainers)
Top Results From Across the Web
ChuckerTeam/chucker: An HTTP inspector for ... - GitHub
Chucker simplifies the inspection of HTTP(S) requests/responses fired by your Android App. Chucker works as an OkHttp Interceptor persisting all those events ...
Read more >Simple Android Network Traffic Inspection With Chucker And ...
Just like Netfox itself, Chucker is a library that allows us to inspect the network traffic of our app. The library is very...
Read more >Getting Started With Debugging in Android Using Chucker
Chucker is an open-source Android debugging library produced and maintained by the Chucker team. The library is used to handle HTTP(S) ...
Read more >Introducing Chucker - ProAndroidDev
Chucker, a fork of Chuck, is a simple library to inspect OkHTTP traffic directly on your Android device. In this blogpost we will...
Read more >Android chucker dependency not found - Stack Overflow
I am trying to integrate the chucker library into my Android project. ... After running my project it givems me following error:
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We have a template for bug reports for a reason.
Provide information according to provided template, so we could help you.
It is just notifications are missing, rest of functionality works. Transactions data is available if you open Chucker via an Android shortcut which is added by default to the app. Suggest to use it till update arrives.
I am working on it, but Chucker isn’t something that has priority for me at the moment, so no timelines about the solution.