Inspecting network requests with Chucker
This is from the Chucker GitHub (https://github.com/ChuckerTeam/chucker) page:
Tapping the Chucker notification mentioned previously launches the Chucker UI. Chucker UI shows a list of all the network requests that have been made by our app. We can tap on a request to see the details of the request.
To use Chucker, follow these steps:
- Add the
chucker
dependency in thelibs.versions.toml
file:chucker = "com.github.chuckerteam.chucker:library:4.0.0" chucker-no-op = "com.github.chuckerteam.chucker:library-no-op:4.0.0"
In the preceding code, we have added two dependencies: the first one is the...