2022-12-01 01:42:18 +01:00
< h1 align = "center" >
2022-12-01 01:54:39 +01:00
< img src = "https://github.com/JGeek00/adguard-home-manager/raw/master/assets/other/banner.png" / >
2022-12-01 01:42:18 +01:00
< / h1 >
2022-09-26 13:51:18 +02:00
2022-12-01 01:42:18 +01:00
< h5 align = "center" >
2022-12-01 01:58:50 +01:00
< b >
AdGuard Home Manager is an
< a href = "https://adguard.com/es/adguard-home/overview.html" target = "_blank" rel = "noopener noreferrer" >
AdGuard Home
< / a >
unofficial client developed with Flutter.< / b >
2022-12-01 01:42:18 +01:00
< / h5 >
< p align = "center" >
2022-12-01 01:56:01 +01:00
< a href = "https://play.google.com/store/apps/details?id=com.jgeek00.adguard_home_manager" target = "_blank" rel = "noopener noreferrer" >
< img src = "/assets/other/get_google_play.png" width = "300px" >
2022-12-01 01:42:18 +01:00
< / a >
2022-12-01 02:02:14 +01:00
< a href = "https://github.com/JGeek00/adguard-home-manager/releases" target = "_blank" rel = "noopener noreferrer" >
< img src = "/assets/other/get-github.png" width = "300px" >
< / a >
2022-12-01 01:42:18 +01:00
< / p >
2022-10-04 16:10:33 +02:00
2022-09-30 11:40:44 +02:00
## Main features
< p > ▶ Manage your AdGuard Home server on an easy way.< / p >
< p > ▶ Supports HTTP and HTTPS connections.< / p >
< p > ▶ Enable and disable the different protections with only one switch.< / p >
< p > ▶ Add multiple servers to the app, and manage all of them from here.< / p >
2022-10-24 03:00:02 +02:00
< p > ▶ See and filter the query logs.< / p >
< p > ▶ Manage your filtering lists.< / p >
< p > ▶ See the clients list and create a custom configuration for a client.< / p >
< p > ▶ Configure the allowed devices, DHCP, DNS or rewrites among others.< / p >
< p > ▶ Material You interface with dynamic theming (only Android 12+).< / p >
2023-05-04 04:04:38 +02:00
< p > ▶ Full desktop support with builds for macOS, Linux and Windows.< / p >
< p > ▶ Responsive UI adapted for landscape displays.< / p >
2022-09-30 11:40:44 +02:00
## Privacy policy
2023-05-08 22:11:09 +02:00
Check the privacy policy [here ](https://github.com/JGeek00/adguard-home-manager/wiki/Privacy-policy ).
2022-09-30 11:40:44 +02:00
## Disclaimer
This is an unofficial application. The AdGuard Home team and the development of the AdGuard Home software is not related in any way with this application.
2023-03-20 04:29:50 +01:00
## Recommended configuration and lists
2024-06-08 21:45:49 +02:00
On [this repository ](https://github.com/juanico10/Pihole_list ) you can find a recommended configuration for AdGuard Home and some lists. Thanks to [juanico10 ](https://github.com/juanico10 ).
2023-03-20 04:29:50 +01:00
2024-09-08 19:30:50 +02:00
## Donations
If you like the project and you want to contribute with the development, you can [become a sponsor on GitHub ](https://github.com/sponsors/JGeek00 ), or you can donate using PayPal.
< div align = "center" >
< a href = "https://www.paypal.com/donate/?hosted_button_id=T63UK6AVL3MG8" >
< img src = "https://raw.githubusercontent.com/stefan-niedermann/paypal-donate-button/master/paypal-donate-button.png" alt = "Donate with PayPal" height = "100" / >
< / a >
< / div >
2023-05-04 04:04:38 +02:00
## Generate production build
< ul >
2024-01-16 18:45:37 +01:00
< li >
< b > Prerequisites< / b >
< ol >
< li > Open < code > pubspec.yaml< / code > and change the version name and the version number.< / li >
< li > Run < code > flutter clean< / code > .< / li >
< li > Run < code > flutter pub get< / code > .< / li >
< / ol >
< / li >
< li >
< b > Android< / b >
< ol >
< li > Make sure you have your < code > key.properties< / code > file at < code > android/< / code > , with all the required values of your signing key correctly set up.< / li >
< li > Make sure you have your keystore file at < code > android/app< / code > .< / li >
< li > Run < code > flutter build apk --release< / code > to compile the APK.< / li >
< li > The .apk package is located at < code > build/app/outputs/flutter-apk/app-release.apk< / code > .< / li >
< / ol >
< / li >
2023-05-04 04:04:38 +02:00
< li >
< b > macOS< / b >
< ol >
2024-01-16 18:45:37 +01:00
< li > Run < code > flutter build macos --release< / code > to compile the production build.< / li >
< li > The .app package is located at < code > build/macos/Build/Products/Release/AdGuard Home Manager.app< / code > .< / li >
2023-05-04 04:04:38 +02:00
< / ol >
< / li >
< li >
< b > Linux< / b >
2023-05-04 18:23:01 +02:00
< ul >
< b > Prerequisites< / b >
< ol >
< li > Install rps by running < code > dart pub global activate rps --version 0.7.0-dev.6< / code > < / li >
< / ol >
< b > Build< / b >
< ol >
2024-01-16 18:45:37 +01:00
< li > Open < code > debian.yaml< / code > file inside debian/ and update the version number< / li >
2023-05-04 18:23:01 +02:00
< li > run < code > rps build linux< / code > < / li >
2024-01-16 18:45:37 +01:00
< li > The .tar.gz is at < code > build/linux/x64/release/bundle< / code > < / li >
2024-01-16 19:06:47 +01:00
< li > The .deb package is at < code > build/linux/x64/release/debian/< / code > < / li >
2023-05-04 18:23:01 +02:00
< / ol >
< / ul >
2023-05-04 04:04:38 +02:00
< / li >
< li >
< b > Windows< / b >
< ol >
2024-01-16 18:45:37 +01:00
< li > Run < code > flutter build windows --release< / code > .< / li >
2023-05-04 04:04:38 +02:00
< li > Open Inno Setup Compiler application and load the script< / li >
2024-01-16 18:45:37 +01:00
< li > The script is located at < code > windows/innosetup_installer_builder.iss< / code > < / li >
2023-05-04 04:04:38 +02:00
< li > Update the version number and save the changes< / li >
< li > Click on the Compile button< / li >
2024-01-16 18:45:37 +01:00
< li > The installer will be generated at < code > build/windows/aghm_installer.exe< / code > .< / li >
2023-05-04 04:04:38 +02:00
< / ol >
< / li >
< / ul >
2022-09-30 11:40:44 +02:00
## Third party libraries
- [provider ](https://pub.dev/packages/provider )
- [sqflite ](https://pub.dev/packages/sqflite )
- [http ](https://pub.dev/packages/http )
- [expandable ](https://pub.dev/packages/expandable )
- [package info plus ](https://pub.dev/packages/package_info_plus )
- [flutter phoenix ](https://pub.dev/packages/flutter_phoenix )
- [flutter displaymode ](https://pub.dev/packages/flutter_displaymode )
- [flutter launcher icons ](https://pub.dev/packages/flutter_launcher_icons )
- [flutter native splash ](https://pub.dev/packages/flutter_native_splash )
- [intl ](https://pub.dev/packages/intl )
- [animations ](https://pub.dev/packages/animations )
- [dynamic color ](https://pub.dev/packages/dynamic_color )
- [device info ](https://pub.dev/packages/device_info )
2022-10-04 16:10:33 +02:00
- [fl chart ](https://pub.dev/packages/fl_chart )
- [flutter svg ](https://pub.dev/packages/flutter_svg )
2022-10-25 20:02:48 +02:00
- [percent indicator ](https://pub.dev/packages/percent_indicator )
2023-05-04 04:04:38 +02:00
- [flutter markdown ](https://pub.dev/packages/flutter_markdown )
- [markdown ](https://pub.dev/packages/markdown )
- [html ](https://pub.dev/packages/html )
- [flutter html ](https://pub.dev/packages/flutter_html )
- [sqlite3 flutter libs ](https://pub.dev/packages/sqlite3_flutter_libs )
- [sqflite common ffi ](https://pub.dev/packages/sqflite_common_ffi )
- [window size ](https://github.com/google/flutter-desktop-embedding )
- [flutter split view ](https://github.com/JGeek00/flutter_split_view ) (forked from [here ](https://pub.dev/packages/flutter_split_view ))
2023-05-06 04:16:24 +02:00
- [async ](https://pub.dev/packages/async )
2023-05-08 22:11:09 +02:00
- [sentry flutter ](https://pub.dev/packages/sentry_flutter )
- [flutter dotenv ](https://pub.dev/packages/flutter_dotenv )
2023-10-21 21:19:40 +02:00
- [flutter reorderable list ](https://pub.dev/packages/flutter_reorderable_list )
- [pie chart ](https://pub.dev/packages/pie_chart )
2023-11-18 23:31:14 +01:00
- [segmented button slide ](https://pub.dev/packages/segmented_button_slide )
2024-01-25 22:34:30 +01:00
- [timezone ](https://pub.dev/packages/timezone )
2024-01-29 16:09:07 +01:00
- [url launcher ](https://pub.dev/packages/url_launcher )
- [flutter custom tabs ](https://pub.dev/packages/flutter_custom_tabs )
2024-09-08 19:27:34 +02:00
- [shared preferences ](https://pub.dev/packages/shared_preferences )
- [window manager ](https://pub.dev/packages/window_manager )
2022-09-30 11:40:44 +02:00
2022-09-26 13:55:16 +02:00
< br >
2022-09-26 13:51:18 +02:00
2023-03-20 04:29:50 +01:00
##### Created by JGeek00