TrackerControl

trackercontrol.org
TrackerControl Icon

Monitor and control hidden data collection in mobile apps about user behavior/ tracking. Get from F-Droid

Open Source

TrackerControl Source Code

Author

TrackerControl

Description

TrackerControl Android: monitor and control trackers and ads.

#android#privacy#tracking-protection

Homepage

https://trackercontrol.org/

License

GPL-3.0

Created

10 Nov 19

Last Updated

26 Feb 26

Latest version

v1.0-alpha13

Primary Language

Java

Size

28,470 KB

Stars

2,392

Forks

108

Watchers

2,392

Language Usage

Language Usage

Star History

Star History

Recent Commits

  • Konrad Kollnig (15 Feb 26)

    New Crowdin updates (#520) * New translations strings.xml (Portuguese) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian) * New translations strings.xml (Ukrainian)

  • Konrad Kollnig (03 Feb 26)

    clean up

  • Konrad Kollnig (03 Feb 26)

    New Crowdin updates (#517) * New translations strings.xml (Romanian) * New translations strings.xml (French) * New translations strings.xml (Spanish) * New translations strings.xml (Arabic) * New translations strings.xml (Czech) * New translations strings.xml (Danish) * New translations strings.xml (German) * New translations strings.xml (Greek) * New translations strings.xml (Basque) * New translations strings.xml (Finnish) * New translations strings.xml (Hebrew) * New translations strings.xml (Hungarian) * New translations strings.xml (Italian) * New translations strings.xml (Japanese) * New translations strings.xml (Korean) * New translations strings.xml (Dutch) * New translations strings.xml (Norwegian) * New translations strings.xml (Polish) * New translations strings.xml (Portuguese) * New translations strings.xml (Russian) * New translations strings.xml (Slovenian) * New translations strings.xml (Turkish) * New translations strings.xml (Ukrainian) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Traditional) * New translations strings.xml (Vietnamese) * New translations strings.xml (Galician) * New translations strings.xml (Portuguese, Brazilian) * New translations strings.xml (Persian) * New translations strings.xml (Tamil) * New translations strings.xml (Bengali) * New translations strings.xml (Estonian) * New translations strings.xml (Telugu) * New translations strings.xml (Slovenian) * New translations strings.xml (Danish) * New translations strings.xml (Danish) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Estonian)

  • Konrad Kollnig (23 Jan 26)

    Version 2026012301

  • Konrad Kollnig (22 Jan 26)

    block private DNS by default

  • Konrad Kollnig (22 Jan 26)

    New Crowdin updates (#511) * New translations strings.xml (French) * New translations strings.xml (Finnish) * New translations strings.xml (Finnish) * New translations strings.xml (Slovenian) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Slovenian) * New translations strings.xml (Hungarian) * New translations strings.xml (Hungarian)

  • Konrad Kollnig (16 Jan 26)

    more reproducible

  • Konrad Kollnig (15 Jan 26)

    try to make builds reproducible

  • Konrad Kollnig (15 Jan 26)

    add option to show unprotected apps

  • Konrad Kollnig (13 Jan 26)

    properly handle access to system settings

  • Konrad Kollnig (13 Jan 26)

    clean up

  • Konrad Kollnig (13 Jan 26)

    update what's new

  • Konrad Kollnig (13 Jan 26)

    add correct URL

  • Copilot (13 Jan 26)

    Integrate DuckDuckGo Tracker Radar for mobile-specific tracker detection (#506) * Initial plan * Add DuckDuckGo tracker blocklist integration Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> * Fix DuckDuckGo tracker loading to preserve Disconnect categories - Only overwrite if existing category is "Content" - Change default category from "Advertisement" to UNCATEGORISED - Check existing trackers before adding to avoid unwanted overwrites Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com>

  • Konrad Kollnig (13 Jan 26)

    add disclaimer about static analysis #452

  • Copilot (13 Jan 26)

    Fix scrollbar offset on wide screens while preserving limited width design (#498) * Initial plan * Fix applications list scrollbar margin issue on wide screens Remove horizontal and vertical padding from root RelativeLayout in main.xml to prevent scrollbar from appearing away from screen edge and to eliminate unwanted left/right margins on wide screens (≥820dp). The RecyclerView now extends to screen edges while child UI elements retain their own padding. Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> * Fix scrollbar position while maintaining limited width on large screens Add clipToPadding="false" to root RelativeLayout to allow scrollbar to be drawn at screen edge while content respects padding for limited width design on wide screens (≥820dp). This preserves the intended UX of centered content on large screens while fixing the scrollbar offset issue. Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com>

  • Konrad Kollnig (13 Jan 26)

    fix DoH

  • Konrad Kollnig (13 Jan 26)

    improve battery handling and cleanup of DoH

  • Konrad Kollnig (13 Jan 26)

    move DoH in settings

  • Konrad Kollnig (13 Jan 26)

    fix microsoft and mapbox

  • Konrad Kollnig (13 Jan 26)

    New translations strings.xml (Czech) (#508)

  • Konrad Kollnig (11 Jan 26)

    fix mainactivity insights: no progress, hide on search

  • Konrad Kollnig (11 Jan 26)

    fix sharing image

  • Konrad Kollnig (10 Jan 26)

    New Crowdin updates (#503) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Simplified)

  • Copilot (08 Jan 26)

    Reload TrackerList when hosts are automatically updated (#502) * Initial plan * Add TrackerList reload when hosts are updated - Add reloadTrackerData() method to TrackerList to clear and reload tracker data - Change trackingIps from HashSet to ConcurrentHashMap.newKeySet() for thread safety - Call reloadTrackerData() from prepareHostsBlocked() after hosts are reloaded - Invalidate tracker count cache when tracker data is reloaded - Ensures TrackerList stays in sync with updated hosts from automatic downloads Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> * Address code review feedback - Use getInstance(c) in reloadTrackerData() to ensure instance is created - Fix ActivitySettings to use reloadTrackerData() instead of loadTrackers() to properly clear old data when domain_based_blocked setting changes Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> * Add synchronization to reloadTrackerData() - Add reloadLock to synchronize tracker data reload operations - Wrap entire reload operation in synchronized block to prevent race conditions - Ensures atomic clear and reload of tracker data Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: kasnder <5175206+kasnder@users.noreply.github.com>

  • Konrad Kollnig (06 Jan 26)

    New Crowdin updates (#492) * New translations strings.xml (Czech) * New translations strings.xml (French) * New translations strings.xml (Slovenian) * New translations strings.xml (Romanian) * New translations strings.xml (French) * New translations strings.xml (Spanish) * New translations strings.xml (Arabic) * New translations strings.xml (Czech) * New translations strings.xml (Danish) * New translations strings.xml (German) * New translations strings.xml (Greek) * New translations strings.xml (Basque) * New translations strings.xml (Finnish) * New translations strings.xml (Hebrew) * New translations strings.xml (Hungarian) * New translations strings.xml (Italian) * New translations strings.xml (Japanese) * New translations strings.xml (Korean) * New translations strings.xml (Dutch) * New translations strings.xml (Norwegian) * New translations strings.xml (Polish) * New translations strings.xml (Portuguese) * New translations strings.xml (Russian) * New translations strings.xml (Slovenian) * New translations strings.xml (Turkish) * New translations strings.xml (Ukrainian) * New translations strings.xml (Chinese Simplified) * New translations strings.xml (Chinese Traditional) * New translations strings.xml (Vietnamese) * New translations strings.xml (Galician) * New translations strings.xml (Portuguese, Brazilian) * New translations strings.xml (Persian) * New translations strings.xml (Tamil) * New translations strings.xml (Bengali) * New translations strings.xml (Estonian) * New translations strings.xml (Telugu) * New translations strings.xml (Finnish) * New translations full_description.txt (Finnish) * New translations short_description.txt (Finnish) * New translations strings.xml (Finnish) * New translations strings.xml (Finnish) * New translations strings.xml (Finnish) * New translations strings.xml (Finnish) * New translations strings.xml (Slovenian) * New translations strings.xml (Slovenian)

  • Konrad Kollnig (04 Jan 26)

    disable strict mode by default

  • Konrad Kollnig (04 Jan 26)

    unused method

  • Konrad Kollnig (04 Jan 26)

    improve insights: add to mainactivity and allow export to friends

  • Konrad Kollnig (04 Jan 26)

    fix receiver crashes

TrackerControl Website

Website

TrackerControl for Android | Monitor and control trackers and ads.

TrackerControl allows you to monitor and control the widespread, ongoing, hidden data collection in mobile apps about user behaviour (tracking).

Redirects

Does not redirect

Security Checks

All 66 security checks passed

Server Details

  • IP Address 185.199.111.153
  • Hostname cdn-185-199-111-153.github.com
  • Location California, Pennsylvania, United States of America, NA
  • ISP GitHub Inc.
  • ASN AS54113

Associated Countries

  • US

Safety Score

Website marked as safe

100%

Blacklist Check

trackercontrol.org was found on 0 blacklists

  • ThreatLog
  • OpenPhish
  • PhishTank
  • Phishing.Database
  • PhishStats
  • URLhaus
  • RPiList Not Serious
  • AntiSocial Blacklist
  • PhishFeed
  • NABP Not Recommended Sites
  • Spam404
  • CRDF
  • Artists Against 419
  • CERT Polska
  • PetScams
  • Suspicious Hosting IP
  • Phishunt
  • CoinBlockerLists
  • MetaMask EthPhishing
  • EtherScamDB
  • EtherAddressLookup
  • ViriBack C2 Tracker
  • Bambenek Consulting
  • Badbitcoin
  • SecureReload Phishing List
  • Fake Website Buster
  • TweetFeed
  • CryptoScamDB
  • StopGunScams
  • ThreatFox
  • PhishFort

Website Preview

TrackerControl Android App

Update Info

  • App TC Slim
  • Creation Date 27 Jul 21
  • Last Updated 18 Jul 24
  • Current Version 2021.07.23-play

Trackers

  • ACRA

Permissions

  • Access Network State
  • Access Wifi State
  • Foreground Service
  • Internet
  • Query All Packages
  • Read Phone State
  • Receive Boot Completed
  • Vibrate
  • Wake Lock
  • Admin

TrackerControl Reviews

More Mobile Apps

About the Data: TrackerControl

API

You can access TrackerControl's data programmatically via our API. Simply make a GET request to:

https://api.awesome-privacy.xyz/security-tools/mobile-apps/trackercontrol

The REST API is free, no-auth and CORS-enabled. To learn more, view the Swagger Docs or read the API Usage Guide.

About the Data

Beyond the user-submitted YAML you see above, we also augment each listing with additional data dynamically fetched from several sources. To learn more about where the rest of data included in this page comes from, and how it is computed, see the About the Data section of our About page.

Share TrackerControl

Help your friends compare Mobile Apps, and pick privacy-respecting software and services.
Share TrackerControl and Awesome Privacy with your network!

View Mobile Apps (25)