What this site does not do
- No cookies are set by this site.
- No user accounts, sign-up forms, or login flows.
- No advertising pixels or third-party tracking.
- No session recording or heatmap tools.
- No contact forms that submit personal data.
AppInspect is a local Android library, not a data service. This page explains what the documentation website collects (nothing) and what the library itself does with data on the device.
This documentation website uses cookie-free, privacy-respecting analytics (Cloudflare Web Analytics) to count page visits. No personal information about visitors is collected or stored. The AppInspect library itself contains no analytics — see the section below.
static.cloudflareinsights.com/beacon.min.js)
is loaded to count page visits and measure performance. It does not set
cookies, does not track individuals across sites, and does not fingerprint
visitors. Aggregated data (page views, countries, referrers) is visible
only to the site owner. See Cloudflare's privacy policy for details.
fonts.googleapis.com. Google may log the request
IP and user-agent per their own privacy policy.
central.sonatype.com, which has its own
privacy policy and may set cookies on that domain.
AppInspect is a developer and QA tool that runs inside the host Android application. It has no cloud backend, requires no account, and never uploads data to any AppInspect server.
appinspect_storage.db) on the device.EncryptedSharedPreferences files are automatically decrypted for read-only viewing inside the inspector, using the host app's own on-device Keystore key — decryption never leaves the device, and encrypted files cannot be edited or deleted from the inspector.The library provides tools to export network logs as TXT or HAR files and to share crash details via the Android share sheet. These exports happen only when someone actively triggers the action inside the inspector.
Network log exports (TXT, HAR, cURL) include the full request and response headers from captured API calls. This may include:
These exports are intended for internal debugging only. Treat them as sensitive internal artifacts and redact credentials before sharing with external parties or uploading to issue trackers.
cacheDir/appinspect_exports/, scoped by a FileProvider that cannot grant access to other paths.appinspect-no-op to ensure no data is captured or exportable.
Use releaseImplementation("...appinspect-no-op") to ship only a
pass-through OkHttp stub in production — no UI, no database, no capture code,
no manifest entries. As a second independent layer, even if the full SDK
accidentally ships, it detects a non-debuggable build and self-disables
completely. End users are completely unaffected.
See the full security model →