[APP][ROOT/NONROOT][OFFICIAL] AdAway v6.1.0

Search This thread

zgfg

Senior Member
Oct 10, 2016
8,985
6,724
Redmi K20 / Xiaomi Mi 9T
Xiaomi Mi 11 Ultra
I have historically built ROMs and before that I was a flash junkie, so re-setting up a device was a VERY common occurrence.

In a way, what I have done is even easier (ie delete two settings instead of noting and entering 10 specific setting values), the problem is that I would like to simply drop in my boot-scripts onto the device, and have it auto configure the device; no manual intervention/config. For eg, I use to have a script when I was rebuilding then clean re-flashing one HIGHLY customisable rom, that returned all my selected customisation adjustments (100 or so manual settings) so the phone returned back to its look-and feel just by running a shell script, instead of the palava of delving deep and returning and searching. I could also use it to transfer the selected settings between devices running the same ROM or to an extent, between two closely related ROMs, as they shared commits on settings/features.

The other thing that concerns me, if it is not accepting my little attempt to set it back on an existing APN, after creating a new one from scratch, for the same reason, it may not accept the setting for proxy, and I would be in the same situation. I haven't checked the logcat for clues, and I will leave this as a problem for "Future @DiamondJohn" to handle... My phone is up and running, I have had recent hell with a bootloop and no PC to fix, and a cracked screen, am not looking to upgrade too soon to A13, so am prepared to leave it be or fix it when/if it becomes an issue again. And it wasn't a total deal-breaker anyway, just annoying.

What I have reaslised, I have my old device, its A8-Oreo, but I think it had the same issue. It will be a hassle to swap the SIM card out-in-out-in between the devices, but doable, or maybe get a $2 starter SIM with minimal or no credit; rather than the hassle of swapping sims between phones. Actually, I have an old pay-as-you-go SIM somehwere? with no credit left that I may be able to use for testing this change; the setting only not the results. I also have a spare device (cheap ebay purchase, same as daily, Google 4A 4G) running A13 as a tester, that I could check with. I have options, but now that it works as expected, it has consumed enough time. I do like the size of this phone, I would of gone smaller if available with other features. Its a good device and stiull gets a lo9t of love on youtube, but the screens are prone to break, as my repair guy said first thing when I showed him; and its the SECOND screen I have broke.

PS: I checked my host building script that was missing the comment character on listing the source files, and it DID have the code that should of included the comment at the start of those lines.🤬 so thats at a higher priority to fix now, or in this case understand what the heck is going wrong; ie what am I doing wrong...
Put your script to:
/data/adb/modules/hosts

and name it service.sh or post-fs-data.sh and reboot

TJW recommends using service.sh but some modules need certain actions to execute earlier hence they use and/or post-fs-data.sh (find more about how/when Magisk executes these scripts in Developer Guide on the Magisk GitHub)

Go to the /data/adb/modules folders and find their scripts there

---

The way as above you will (mis)use again the folder from Systemless hosts module

You can also name your script whatever, like myScript.sh and put it to one or the other folder (again, Magisk execute the scripts it finds there at a different stage of booting):
/data/adb/service.d
or
/data/adb/post-fs-data.d

Or you can make your own module - minimalistic zip for your module is attached

Unzip, put your script (with the name as described above), re-zip (structure of the zip file must remain the same - inspect also zip files from the other modules), eg here:

'Flash' - ie, install from Magisk app (but don't become addicted again)😁

Edit the module.prop (author, description)

See where it goes when you install and where it moves upon reboot.
See what happens if you change id in the module prop, etc
 

Attachments

  • mySimpleModule.zip
    1.8 KB · Views: 22
Last edited:

DiamondJohn

Recognized Contributor
Aug 31, 2013
6,672
6,698
Sydney
Put your script to:
/data/adb/modules/hosts

and name it service.sh or post-fs-data.sh and reboot

TJW recommends using service.sh but some modules need certain actions to execute earlier hence they use and/or post-fs-data.sh (find more about how/when Magisk executes these scripts in Developer Guide on the Magisk GitHub)

Go to the /data/adb/modules folders and find their scripts there

---

The way as above you will (mis)use again the folder from Systemless hosts module

You can also name your script whatever, like myScript.sh and put it to one or the other folder (again, Magisk execute the scripts it finds there at a different stage of booting):
/data/adb/service.d
or
/data/adb/post-fs-data.d

Or you can make your own module - minimalistic zip for your module is attached

Unzip, put your script (with the name as described above), re-zip (structure of the zip file must remain the same - inspect also zip files from the other modules), eg here:

'Flash' - ie, install from Magisk app (but don't become addicted again)😁

Edit the module.prop (author, description)

See where it goes when you install and where it moves upon reboot.
See what happens if you change id in the module prop, etc
I dont think you could understand, as I have never documented it here on XDA. I have developed extensive boot scripting features that goes WELL beyond the features included for Magisk; and these features are required due to scheduling scripts in the correct order and dB concurrency (i have a LOT of dB scripts that run against the same dB). Trust me, its handled, and this code has been working solid since v1.0 around JB, with very little to no changes, and the core code is surprisingly short and simple and hence very reliable, for the extensive features it provides. The includes, supporting files and the scripts themselves on the other hand... I do have the small core/entry point script sitting in service.d . It started as an init.d as the original injection point in old CM based ROM's before Magisk, and could be thought of as init.d on Russian weightlifter steroids, and has two or three lines similar to the init scripts in ROMs that used to support init.d. It is actually safe to run as a post-fs-data (it handles timing in a simple way but adding complex control/features, and is obviously non blocking parallel processing, and hence it was safe as post-fs-data when I first installed Magisk and did not understand the difference between post-fs-data and service.d; it basically ran service.d "style", but earlier in the boot sequence. And I create multiple modules as it is. My App in my sig creates them on the fly. I have the basics under my belt, and so also have a "normal" Magisk zip module published here on XDA. Thats actually what I use to build my mega host file ;)

The timing / ordering / sequence control is one of the many reasons I prefer the boot script system I have over Magisk, when it is possible. A single script is easier to maintain and install than the multiple zip files each containing multiple files, i would need to maintain if each were a magisk module. And because of technicalities such as database concurrency (as one issue), the/a/or many Magisk module would be much more work for me than the simple scripting engine I have created; ie reuse. Trust me, magisk modules for my needs would be much more maintenance work. Thanks for your thoughts, but I have that covered, and its has been successfully covered for my needs, for many years.

And about mounting files as done by Magisk modules & folder structures, one thing I *think* I saw but have never needed, thus haven't looked into, was how Vanced used to mount VYT using scripting code, and not the common folder structure. Saving to look further into that one on a very rainy day.
 

ipdev

Recognized Contributor
Feb 14, 2016
2,402
1
4,838
Google Nexus 10
Nexus 7 (2013)
<SNIP>
And about mounting files as done by Magisk modules & folder structures, one thing I *think* I saw but have never needed, thus haven't looked into, was how Vanced used to mount VYT using scripting code, and not the common folder structure. Saving to look further into that one on a very rainy day.
You can blame me for the idea. 🙃
Their root install mimicked a Magisk module.
I did not have any thing to do with their implantation of my idea.
I was invited into the Alpha testing group though.


OT for this thread but..
Since Magisk's mount overlay did not extend to userdata.
I came up with the simple idea to just use the mount command to overlay in userdata.
It started around here.
Vanced - [xda thread] - Post #16,374
Vanced - [xda thread] - Post #16,545

I had asked team Vanced for permission to release a module using Vanced.
Long story short..

Team Vanced incorporated it into their root install. 😉

You might also be interested..
Vanced - [xda thread] - Post #17,616

My current (revanced) version.
iYT - [github] - commit
iYTm - [github] - commit

---

Note:
zgfg uses the same idea of using the mount command to extend beyond Magisk's overlay.
For device (manufacture) specific partitions in his SystemlessDebloater module.
SystemlessDebloater - [github] - Link

Cheers. :cowboy:
 

zgfg

Senior Member
Oct 10, 2016
8,985
6,724
Redmi K20 / Xiaomi Mi 9T
Xiaomi Mi 11 Ultra
Type the following 'address' to the Chrome address bar:
chrome://chrome-urls/

Then navigate to net-internals, DNS or use this 'address' directly:
chrome://net-internals/#dns

It shows how Chrome resolves the hostnames. Three screenshots attached: existing and not blocked, non-existing/wrong and blocked hostname

---

Btw, @PerfectSlayer, do you maybe call mount -o bind or something upon Hosts file was successfully updated or Changes applied, to immediately remount /data/adb/modules/hosts/system/etc/hosts to (/system)/etc/hosts
 

Attachments

  • IMG_20230423_082829.jpg
    IMG_20230423_082829.jpg
    156.5 KB · Views: 101
  • IMG_20230423_082900.jpg
    IMG_20230423_082900.jpg
    146.9 KB · Views: 98
  • IMG_20230423_082941.jpg
    IMG_20230423_082941.jpg
    156.5 KB · Views: 100

Relod8

Member
Mar 15, 2019
28
0
Hello, how can I get Adaway working on AndroidX86? I keep getting an error "Failed to install hosts file" , I have root enabled in developer settings and gave it su access.
 

xozaq

New member
Feb 27, 2020
4
0
Hi there, I am new to adaway (ditched blockada) and now am stuck with the problem that it seems that it blocks almost every internet connections (signal works but any other app and browsing the net is blocked). Any advice here? I feel kind of stupid not being able to get this going... Thanks in advance!
 

Nergal di Cuthah

Senior Member
Sep 20, 2013
2,114
1,161
Google Pixel 6 Pro
Hi there, I am new to adaway (ditched blockada) and now am stuck with the problem that it seems that it blocks almost every internet connections (signal works but any other app and browsing the net is blocked). Any advice here? I feel kind of stupid not being able to get this going... Thanks in advance!
Are you using it in nonroot vpn form or root hosts form
 

xozaq

New member
Feb 27, 2020
4
0
Yes default settings. Didn't change anything in the settings. Reinstall didn't help. Even to download the host files I needed to pause adaway.
 

mrkillerhomer

New member
May 1, 2023
1
0
Hi, i am having problem with Adaway on my fold 4.
I am using non rooted version via VPN and installed latest version.
Everything works just fine when im on WiFi, but mobile data dont work.
Last night i reinstalled the app completely and it worked again on mobile data. Then today it no longer works, as soon as i disable WiFi and uses mobile it dont work. i disable the VPN and connection right away.
Now i just tested again with VPN on and it works again... seems very unreliable.
I enabled Always on VPN in android settings under VPN and adaway also monitors the connection.

Anyone know what could be the cause of this? i also updeted my phone to latest offical version.
 

ToXiTe

Senior Member
Jan 17, 2015
311
224
First I thought that I got crazy but I've retested back and forth several times, on WLAN and Mobile Network:

1) Starting point:
My Systemless Hosts + AdAway working, ads are properly blocked, eg I cannot open ads.google.com.
I use Chrome

2) I keep AdAway as is, and I just open the native Private DNS setting and switch it from Auto to Off (!)

Few seconds later, my Chrome starts showing the ads elsewhere and ads.google.com page now opens?!

3) I switch Private DNS back to Auto, and Chrome starts again properly blocking the ads

MIUI 13/A12,
Chrome 111.0.5563.58

---

On my another phone
MIUI 12.5/A11
Chrome 111.0.5563.57 (PlayStore does not notify to update Chrome)

I cannot 'reproduce', no matter if Private DNS is Auto or Off, ads are always properly blocked

My phones have different versions of Magisk (Delta vs Canary), but since the /etc/hosts file is properly patched by AdAway, it shouldn't matter

Hence I suggest to those who claim that they cannot get ads blocked (although Systemless hosts + AdAway are properly enabled and configured), to test with Private DNS Auto (and Off, back and forth)

---

Of course, if you set Private DNS to dns.adguard-dns.com, then you don't need AdAway anymore (but you could no more reconfigure Blocked and Allowed lists at your will) since AdGuard DNS will block you ads
AdAway only works for me if I set a custom DNS server in Private DNS settings.
 

zgfg

Senior Member
Oct 10, 2016
8,985
6,724
Redmi K20 / Xiaomi Mi 9T
Xiaomi Mi 11 Ultra
AdAway only works for me if I set a custom DNS server in Private DNS settings.
Do you use dns.adguard-dns.com for Private DNS, another DNS server that bloks adds, and which one

And in that case, if you disable AdAway and use Private DNS only - does then ad-blocking still works for you

Hence finally, what exactly do you mean by and how do you test/validate that really AdAway (not just blocking ads) works only when you use Private DNS
(not that I don't be believe but I want to be sure that you encounter something similar as I did)

Supposidely, you run AdAway in root mode.
Did you ou test with WiFi and/or Mobile data?
If Mobile Data, did you check and removed Proxy from the APN?

Do you test in Chrome, maybe other Chromium browser and/or other apps?
Have you (and could you) check what DNS server is pushed by DHCP for that connection where you say that AdAway does not work without Private DNS
 

ToXiTe

Senior Member
Jan 17, 2015
311
224
Do you use dns.adguard-dns.com for Private DNS, another DNS server that bloks adds, and which one

And in that case, if you disable AdAway and use Private DNS only - does then ad-blocking still works for you

Hence finally, what exactly do you mean by and how do you test/validate that really AdAway (not just blocking ads) works only when you use Private DNS
(not that I don't be believe but I want to be sure that you encounter something similar as I did)

Supposidely, you run AdAway in root mode.
Did you ou test with WiFi and/or Mobile data?
If Mobile Data, did you check and removed Proxy from the APN?

Do you test in Chrome, maybe other Chromium browser and/or other apps?
Have you (and could you) check what DNS server is pushed by DHCP for that connection where you say that AdAway does not work without Private DNS

The hosts file only applies if I have Private DNS set to a custom one (currently set to Cloudflare, no ad blocking).

I used AdAway to manually block Twitter and it only works when I have the Private DNS to custom. It doesn't work if I set it to off or auto.

It works for both WiFi and mobile data.

I am using Chrome to test. If blocking works, I would get connection refused error when trying to open the blocked site.

The default DNS server provided by DHCP is a private one because I am inside a university network.
 
  • Like
Reactions: zgfg

ithehappy

Senior Member
May 5, 2008
5,548
1,929
Calcutta
Google Pixel 2 XL
Using non rooted version on pixel 2 xl. A banking app put under exclusion list still won't function, crashes on opening. Any idea?
 

Attachments

  • Screenshot_20230504-045534.png
    Screenshot_20230504-045534.png
    278.9 KB · Views: 41

zgfg

Senior Member
Oct 10, 2016
8,985
6,724
Redmi K20 / Xiaomi Mi 9T
Xiaomi Mi 11 Ultra
Using non rooted version on pixel 2 xl. A banking app put under exclusion list still won't function, crashes on opening. Any idea?
If you completely disable AdAway, does it work then?

If not, then it's not about AdAway but your banking app detects that 'phone is not safe', eg, due to the unlocked Bootloader.
Btw, do you pass Play Integrity API, Device and Basic Integrity - that's usually the first must-have for banking apps
 
Last edited:

ithehappy

Senior Member
May 5, 2008
5,548
1,929
Calcutta
Google Pixel 2 XL
If you completely disable AdAway, does it work then?

If not, then it's not about AdAway but your banking app detects that 'phone is not safe', eg, due to the unlocked Bootloader.
Btw, do you pass Play Integrity API, Device and Basic Integrity - that's usually the first must-have for banking apps
Yes, disabling adaway restores the banking app in fully working state.
No, I pass only basic integrity apparently, not device or strong one. I guess it's time to relock the bootloader. Not seeing any advantage of unlocked as I'm never going to root my device anyway. But would that make the banking app work with vpn based ad blockers i wonder
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 2
    May anyone help me to get rid of ads in the german flea market APP 'Kleinanzeigen'
    No ads for me in the new app (see screenshot). Standard hosts plus
    If you still see ads try DNS requests and block some entries.
    2
    In-App Google/Facebook login blocked by Adaway using multiple Hosts files.

    Anyone know the domain to put into allow list inside AdAway.

    <SNIP>
    Not sure what app you are using. It might be related to said app than Google/Facebook.

    I am not aware of blocked domains for Google.

    As for Facebook.
    AdAway (wiki) - [github] - Problematic Apps (Facebook) - Link

    ---

    To find out what domains are being called when running the app, use the DNS dump option in AdAway.
    AdAway (wiki) - [github] - How to Log DNS Requests - Link

    You can then add them to you allow (white) list and restart.
    Then see if you can log in, if you can go back and remove them one at a time from the allow list until you can not log in again.
    You should be left with just one or a few domains that need to be allowed.

    Cheers. :cowboy:
  • 3353
    icon.png
    AdAway

    AdAway is an open source ad blocker for Android using the hosts file.


    Google Play Store notice

    According the Google Play Developer Policy, especially the "Device and Network Abuse" section, ad blocker like AdAway violates the "Apps that block or interfere with another app displaying ads." rule and can't be distributed on distributed on the Play Store.
    As Free and Open Source Software, AdAway is available from F-Droid Store or this XDA thread :good:


    Requirements

    This application requires Android 8 or above and does no more require root.

    For older Android versions, a rooted device is required.


    Changelog

    If you don't want to read each announce post of this thread, you can:


    Downloads

    Stable versions are available on GitHub releases and F-Droid Store:
    Beta versions are available on GitHub releases only: AdAway 6.0.2b

    The app provides an in-app updater for both GitHub and F-Droid builds.
    Keep in mind beta channel is limited to GitHub builds, and F-Droid releases usually have a several days latency.


    Problem? Read this

    * If you use Chrome and still see ads on web pages, remember to disable the "data saver" or "reduced data usage" browser option.
    * Check your APN settings for any proxy, the proxy itself could be allowing ads. Disable the proxy.
    * After you install or make any change to AdAway, you must reboot for those changes to take effect.
    * If you are still having issues please read and understand all the info in the wiki before asking for help here.

    Otherwise, this is the right thread to discuss about it or file a bug report here.


    Contributors

    PerfectSlayer, Vankog, jawz101
    Source Code: https://github.com/AdAway/AdAway
    170
    Hi all,

    A new year is coming and I wish you all to have nice holidays :victory:

    Just few words about this ending year. There was about 12 releases in 2019 which brings you a new UI, a lot of bug fixes, Android 10 support, Gist and GitLab hosting support and better Magisk support.
    All of this is possible thanks to the community to help users to discover the app, learn how to use it and report any new bug and also your moral, nice words and thanks you can send to me, and financial support.
    Thanks a lot for all donators, GitHub sponsor and the Pixel 2 you sent me to test Android 10 support.

    For the next year, I hope to release the next version (V5), at least in beta to start. It's been 9 months since its first lines of code and things are working quite nicely.
    It aims to make the app simpler to use for the main use cases, support rooted and non rooted devices and remove old hacks/workaround which are no more needed on recent setups.

    But before this big next update, I still have time to fix current issue with a new release :p

    Changelog:
    • Fix GitLab hosting support (commit date parsing failed)
    • Translation update

    Thanks:

    Special thanks to @gallegonovato for its helpful bug report and @Vankog for translation update.

    Download:

    AdAway 4.3.2 on AndroidFileHost (md5: 78fde09a0e92044c45e901bb1cec8e2e)
    159
    Hi all,

    Long time no see! It's been more than two months since the last update.
    I can't say I was not active on the project as I start working on a new version (5.x.y) as a side project.
    I won't share the source code yet as it is not ready at all and I don't want to give an ETA but this new version targets the following goals:
    • 1. Revamp the UI
    • 2. Clean up old support
    • 3. Address one of the main drawback of the app

    1. The card based UI does not feel right. Welcome card takes too much space, update button / status has a lot of critic. I guess I can do better.
    I started a new simpler and lighter design which provide the most useful information on home screen and all main actions to trigger in one tap (no more burger menu).
    It is still under heavy development but I hopefully get a friend onboard, specialized in graphics and design, to help me :highfive:

    2. In order to simplify the development, I clean up the app and remove support for old features.
    I bump target SDK version so I finally get Java 8 language feature (it was released 5y ago…) and move to topjohnwu root library (instead of home made one). It means systemless support is now handled by Magisk and other root solutions will still work.

    3. Think of what prevent most of users to use AdAway? Now it's gone!
    It's not gone forever. It's still here but there will be a fallback to workaround it.
    I won't tell more until the first public beta but I guess you get the point :fingers-crossed:

    In the meanwhile, here is a new version!

    Feedback:

    Is anyone using a hosts list hosted on Gitlab? It keeps showing "Unknown update status".
    GitLab, like GitHub do not set LastModified HTTP header so update status is not supported... yet!

    Changelog:
    • Add Gist and GitLab hosting support for hosts file
    • Add option to set default IPv6 redirection
    • Improve reboot command
    • Improve UI for overlays
    • Update translations

    Thanks:

    Special thanks to @MSF Jarvis and ralayax for theirs contributions and @andy356 for its helpful bug report.

    Download:

    AdAway 4.2.5 on AndroidFileHost (md5: ab81225745afaaa7646024109de299c0)
    148
    Hi all,

    Feedback:

    Hmm, not working for me for this URL, v4.1.0 shows something like not updated in -360 days (some large negative value). Can you please see if you can reproduce?
    https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts
    It works well here. I failed to reproduce as I change the HTTP client library and how I use it.
    But update date for the source you link definitely works now.

    All the F-Droid apps I know of have manual push updates to the store.

    Isn't automatic build basically for nightlies?
    Not really. You could choose a lot of different mode.
    For example, F-Droid server watches AdAway GitHub repository to find tags which match a specific versioning pattern.

    I exist still... do you know what i have to do to transfer ownership? if i edit project it doesn't let me change the primary author so i assume i have to PM some higher up to make this happen?
    Thank you so much! :highfive:

    This is now done, @PerfectSlayer is the OP of this thread.
    Thank you too!


    Changelog:
    • Add hosts source download cache
    • Add snackbar notification to update host from DNS request listing
    • Update UI from Material Design to Material Theming
    • Update gradle, plugins and dependencies
    • Fix crash parsing not defined host source last modified date
    • Fix native modules build script (required for F-Droid build server)
    • Fix Transifex issues

    Thanks:

    Special thanks to all recent donators! Your help is really appreciated :good:

    Download:

    AdAway 4.2.0 on AndroidFileHost (md5: 023169e7c345ef7297095793024f8478)
    144
    Hi all,

    I talked enough about it the past weeks and here it is: the first beta for the next version of AdAway.
    As you know, the main feature is the removal of root requirement but it also comes with a lot of improvements like an easier to use UI, a builtin updater, new cache and databases to improve reliability or even a quick pause/resume adblocking button that 3rd party apps can control.

    It took me literally a year and 330+ commits to build it (the first commit of this branch was April the 7th) and I hope it will be worth it.
    It should allow the app to be viable in the future with root being more and more difficult to achieve at each new Android release and Google hardening SafetyNet checks.

    I will try to answer to the most expected questions here so you still can post a link to this FAQ later to lost users.

    FAQ:

    Does this version replace the v4.x versions?
    No. This is still a preview version and does not replace the stable one.
    It is available to test it and report issues and feedback before being promoted to stable.

    Can I upgrade and revert safely?
    Yes. Both v4 and v5 use the same settings export format.

    Why does this version targets Android 8+ Oreo only?
    Like the v4, v5 is expected to offer support for latest devices.
    Android 8 and above represent more than 60% of device distribution and will grew through time.
    If you use an older device, root solutions work very well and v4 is here for you (like v2 and v3 stayed for legacy devices).

    How the hell does it work without root?
    This version provides two adblocking methods: the usual root one using hosts file and a new one using local VPN.
    The VPN solution allows to filter and alter connections of your devices without root access.

    Is using a VPN safe?
    In the case of AdAway, yes. It uses VPN API but does not connect to a VPN server.
    In the case of VPN client app, it depends.
    To give you more details, a VPN client app uses the VPN API to create a virtual network interface on your device and redirect all your traffic into it.
    If you imaginge the VPN like a pipe (the right word is tunnel), client VPN app outputs all your traffic on a VPN server which is able to check what you are doing on the Internet.
    With AdAway, your network is not redirected to a VPN server but your device internet connection (same as no VPN). VPN API is only used to get traffic into it to break the connections to ad servers.

    Is VPN use battery?
    Yes, like everything you do on device.
    Witouth root, a VPN service will be running permanently to filter your traffic.
    Good news is it will only filter DNS traffic. Not all traffic is redirected into it so it won't be as expensive as you can fear.

    Did you come up with this idea alone?
    Absolutely not! I spent a lot of hours trying to find altenatives to hosts based adblocking (like routes or private DNS). But nothing was better than VPN based adblocking.
    So we (MrRobinson and I) approched Julian Klode, developer of DNS66 more than three years ago to see if we can merge our apps. It wasn't that easy as we don't develop our apps the same way so I ended up by integrating the DNS66 adblocking method into AdAway. It is fine for Julian, his app is Open Source and he himself built it from the core code of AdBuster app (an VPN based adblocking app).

    Should we stop using DNS66 for AdAway?
    Not at all. DNS66 is a great app and provides some features that AdAway doesn't have (yet?), like DNS settings.
    DNS66 is a great app, keep using it if you like it!
    If both apps used the same adblocking method a year ago when I start this version, I keep adding feature to the VPN adblocking method and most of them won't be in DNS66.
    If Julian ports them back to DNS66, it's great if it can help his app and users!

    Is it me or the app put on weight?
    Yes, the app significantly grew due to new libraries like VPN related ones and Android Jetpack.
    It also stores more data on device: a http cache, a host database, a hosts copy, etc...
    I think 15~20mo of storage is still fine.

    Changelog:

    Without further ado, check the summarized changelog (it was hard to summarize a one year development)

    • Add new home screen
      • Provides all main controls from one screen
      • Displays currently blocked, allowed and redirected domains
      • Displays current hosts sources status and control to force apply
    • Add non root ad-blocking feature
      • Uses a builtin local VPN to filter DNS request to blocked domains
      • Based on the work of dns66 by julian-klode
      • Allows to excluded system applications and per user applications
    • Add builtin updater with changelog display
    • Add feature to quickly pause and resume ad-blocking
    • Add wizard screen for first run setup
    • Add feature to display and filter all blocked, allowed, redirect domains
    • Improve preferences screen
    • Add broadcast receiver to control ad-blocking from third party applications
    • Update Android target to Android 10
    • Improve root and shell support
    • Split translation files to easier understand their context
    • Add GitHub action test and build tasks

    Download:

    AdAway 5.0.0 beta (sha2: 200fd7789b174735d3af5925b4e568b09475bb3f39a79d24d6617af4b19cd19d)

    If you like my work, feel free to support me. Check my sign for donation links. Thanks all! :highfive: