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>
4 lines
159 B
Bash
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"
|