soul-browser/scripts/remove-exodus-trackers.sh
Cursor Agent f4b02ef19b Remove tracker SDKs for clean Exodus Privacy scan
Strip Google AdMob, Firebase Analytics (measurement), and OpenCensus
from the rebuilt APK. Native ads are disabled via a no-op MyAdNative
stub; MainApp.d already returns null for ad requests.

Adds scripts/remove-exodus-trackers.py to remove tracker smali packages
and patch remaining references (HttpRequest tracing, WorkManager clock).

Exodus standalone scan reports 0 trackers on the built APK.

Co-authored-by: KaKi87 <KaKi87@pm.me>
2026-08-12 19:16:14 +02:00

4 lines
159 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
exec python3 "${ROOT_DIR}/scripts/remove-exodus-trackers.py"