Repo created

This commit is contained in:
Fr4nz D13trich 2025-11-20 16:34:49 +01:00
parent 21de94943c
commit 4e2998210b
143 changed files with 10606 additions and 2 deletions

4
docs/_config.yml Normal file
View file

@ -0,0 +1,4 @@
title: De-Bloater
description: The homepage of De-Bloater
show_downloads: false
theme: jekyll-theme-hacker

33
docs/_includes/nav.html Normal file
View file

@ -0,0 +1,33 @@
<!DOCTYPE html>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="topnav" id="mTopnav">
<a href="javascript:void(0);" class="icon" onclick="mMenu()">&#9776;</a>
<a href="{{ site.github.url }}">Home</a>
<div class="dropdown">
<button class="dropbtn">Downloads
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="{{ site.github.url }}/change-logs/">What's New</a>
<a href="https://play.google.com/store/apps/details?id=com.sunilpaulmathew.debloater" target="_blank">Google Play</a>
<a href="https://f-droid.org/packages/com.sunilpaulmathew.debloater" target="_blank">F-Droid</a>
<a href="https://github.com/sunilpaulmathew/De-Bloater/releases/latest" target="_blank">GitHub</a>
</div>
</div>
<a href="https://github.com/sunilpaulmathew/De-Bloater" target="_blank">Source Code</a>
<a href="https://poeditor.com/join/project?hash=BZS89Ev3WG" target="_blank">Translations</a>
<div class="dropdown">
<button class="dropbtn">How-To
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="{{ site.github.url }}/general/">General</a>
<a href="{{ site.github.url }}/permissions/">Permissions</a>
<a href="{{ site.github.url }}/privacy-policy/">Privacy Policy</a>
<a href="{{ site.github.url }}/disclaimer/">Disclaimer</a>
</div>
</div>
<a href="{{ site.github.url }}/donations/">Donations</a>
<a href="{{ site.github.url }}/contribute/">Contributions</a>
</div>
<p style="margin-bottom:25px;"></p>

View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<link rel="shortcut icon" type="image/png" href="/asset/fav.ico"/>
{% seo %}
</head>
<body>
<header>
<div class="container">
{% include nav.html %}
</div>
</header>
<div class="container">
<section id="main_content">
{{ content }}
</section>
</div>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
</body>
</html>

View file

@ -0,0 +1,386 @@
@import "rouge-base16-dark";
@import "default_colors";
$body-background: $cod-grey !default;
$body-foreground: $gallery !default;
$header: $conifer !default;
$blockquote-color: $silver-chalice !default;
$blockquote-border: $dove-grey !default;
$container-max-width: 1000px;
@mixin media-max-width($max-width) {
@media (max-width: $max-width) {
@content;
}
}
.topnav {
background-color: $cod-grey;
overflow: hidden;
position: fixed;
width: 100%;
top: 0;
}
.topnav a {
float: left;
display: block;
color: #4285F4;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.active {
background-color: #4caf50;
color: white;
}
.topnav .icon {
display: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 17px;
border: none;
outline: none;
color: #4285F4;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.dropdown-content {
display: none;
position: fixed;
background-color: #4285F4;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.topnav a:hover,
.dropdown:hover .dropbtn {
background-color: #555;
color: white;
}
.dropdown-content a:hover {
background-color: #ddd;
color: black;
}
.dropdown:hover .dropdown-content {
display: block;
}
body {
margin: 0;
padding: 0;
background: $cod-grey;
color: $body-foreground;
font-size: 16px;
line-height: 1.5;
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
}
/* General & 'Reset' Stuff */
.container {
width: 90%;
max-width: $container-max-width;
margin: 0 auto;
}
section {
display: block;
margin: 0 0 20px 0;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 20px;
}
li {
line-height: 1.4 ;
}
/* Header, <header>
header - container
h1 - project name
h2 - project description
*/
header {
background: rgba(0, 0, 0, 0.1);
width: 100%;
border-bottom: 1px dashed #4285F4; //header;
padding: 20px 0;
margin: 0 0 40px 0;
}
header h1 {
font-size: 30px;
line-height: 1.5;
margin: 0 0 0 -40px;
font-weight: bold;
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
color: #4285F4;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
0 0 5px rgba(181, 232, 83, 0.1),
0 0 10px rgba(181, 232, 83, 0.1);
letter-spacing: -1px;
-webkit-font-smoothing: antialiased;
@include media-max-width($container-max-width) {
margin-left: 0;
}
}
header h1:before {
content: "./ ";
font-size: 24px;
}
header h2 {
font-size: 18px;
font-weight: 300;
color: #666;
}
#downloads .btn {
display: inline-block;
text-align: center;
margin: 0;
}
/* Main Content
*/
#main_content {
width: 100%;
-webkit-font-smoothing: antialiased;
}
section img {
max-width: 100%
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
color: #4285F4;
letter-spacing: -0.03em;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1),
0 0 5px rgba(181, 232, 83, 0.1),
0 0 10px rgba(181, 232, 83, 0.1);
}
#main_content h1 {
font-size: 30px;
}
#main_content h2 {
font-size: 24px;
}
#main_content h3 {
font-size: 18px;
}
#main_content h4 {
font-size: 14px;
}
#main_content h5 {
font-size: 12px;
text-transform: uppercase;
margin: 0 0 5px 0;
}
#main_content h6 {
font-size: 12px;
text-transform: uppercase;
color: #999;
margin: 0 0 5px 0;
}
dt {
font-style: italic;
font-weight: bold;
}
ul li {
list-style-image:url('../images/bullet.png');
}
blockquote {
color: $blockquote-color;
padding-left: 10px;
border-left: 1px dotted $blockquote-border;
}
pre {
background: rgba(0, 0, 0, 0.9);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 10px;
font-size: 16px;
color: #4285F4;
border-radius: 2px;
word-wrap: normal;
overflow: auto;
overflow-y: hidden;
}
code.highlighter-rouge {
background: rgba(0,0,0,0.9);
border: 1px solid rgba(255, 255, 255, 0.15);
padding: 0px 3px;
margin: 0px -3px;
color: #aa759f;
border-radius: 2px;
}
table {
width: 100%;
margin: 0 0 20px 0;
}
th {
text-align: left;
border-bottom: 1px dashed #4285F4;
padding: 5px 10px;
}
td {
padding: 5px 10px;
}
hr {
height: 0;
border: 0;
border-bottom: 1px dashed #4285F4;
color: #4285F4;
}
/* Buttons
*/
.btn {
display: inline-block;
background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
padding: 8px 18px;
border-radius: 50px;
border: 2px solid rgba(0, 0, 0, 0.7);
border-bottom: 2px solid rgba(0, 0, 0, 0.7);
border-top: 2px solid rgba(0, 0, 0, 1);
color: rgba(255, 255, 255, 0.8);
font-family: Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 13px;
text-decoration: none;
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.btn:hover {
background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
}
.btn .icon {
display: inline-block;
width: 16px;
height: 16px;
margin: 1px 8px 0 0;
float: left;
}
.btn-github .icon {
opacity: 0.6;
background: url("../images/blacktocat.png") 0 0 no-repeat;
}
/* Links
a, a:hover, a:visited
*/
a {
color: #63c0f5;
text-shadow: 0 0 5px rgba(104, 182, 255, 0.5);
}
/* Clearfix */
.cf:before, .cf:after {
content:"";
display:table;
}
.cf:after {
clear:both;
}
.cf {
zoom:1;
}
#a-title {
text-decoration: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child),
.dropdown .dropbtn {
display: none;
}
.topnav.responsive {
position: relative;
}
.topnav a.icon {
float: left;
display: block;
}
.topnav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.topnav.responsive .dropdown {
float: none;
}
.topnav.responsive .dropdown-content {
position: relative;
}
.topnav.responsive .dropdown .dropbtn {
display: block;
width: 100%;
text-align: left;
}
}

BIN
docs/assets/fav.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -0,0 +1,8 @@
function mMenu() {
var x = document.getElementById("mTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}

15
docs/index.md Normal file
View file

@ -0,0 +1,15 @@
---
layout: default
title: Home
---
Welcome to the home page of De-Bloater, an application using the power of Magisk/Kernel SU/APatch to de-bloat unwanted applications systemless-ly!
<p style="text-align: center"><img src="https://raw.githubusercontent.com/sunilpaulmathew/De-Bloater/master/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png" alt="" width="250" height="500" /> <img src="https://raw.githubusercontent.com/sunilpaulmathew/De-Bloater/master/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png" alt="" width="250" height="500" /> <img src="https://raw.githubusercontent.com/sunilpaulmathew/De-Bloater/master/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png" alt="" width="250" height="500" /></p>
### Features
1. Easily remove system applications from "/system", "/vendor", and "/product" directories (Reboot required).
2. Restore de-bloated apps, either individually or as a whole (Reboot required).
3. Includes pre-defined de-bloated scripts.
4. Elegantly designed user interface with an auto-dark/light theme.
5. A lot more.

193
docs/pages/change-logs.md Normal file
View file

@ -0,0 +1,193 @@
---
layout: default
title: What's New
permalink: /change-logs/
---
## What's New
### v0.30
- Updated build tools.
- Added Estonian translations.
- Miscellaneous changes.
### v0.29
- Now possible to opt-out from the auto-update check (only at first launch).
- Updated Japaneses translations.
- Miscellaneous changes.
### v0.28
- APatch support (experimental).
- More materialized app UI.
- Now targets SDK 35.
- Build with latest gradle and dependencies.
- Added Hungarian, Slovak, and Dominican Spanish (and updated) translations
- Miscellaneous changes.
### v0.27
- Kernel SU support.
- More materialized app UI.
- Build with latest gradle and dependencies.
- Miscellaneous changes.
### v0.26
- Exp: Included '/system/preload' to support list.
- Exporting profiles now allows using custom names.
- Searching apps now consider for both app and package names.
- Replaced depreciated onActivityResult with ActivityResultLauncher
- Added Japanese and Chinese (Simplified & Traditional - HK) translations.
- Updated other translations.
- Updated build tools and dependencies.
- Miscellaneous changes.
### v0.25
- Improved app updates.
- Added French (Belgian), Portuguese (Brazilian) and Chinese (Traditional) translations.
- Updated other translations.
- Updated build tools and dependencies.
- Miscellaneous changes.
### v0.24
- Added Vietnamese and Chinese (Simplified) translations.
- Updated French translations.
- Updated build tools and dependencies.
- Miscellaneous changes.
### v0.23
- Added French translations (incomplete).
- Updated Italian & Polish translations.
- Updated Credits.
- Miscellaneous changes.
### v0.22
- Improved and enhanced main UI.
- Added option to Swipe change pages.
- Added new credits page.
- Updated translations message.
- Main UI now includes package names.
- Added searching in Inactive apps page.
- De-Bloater now targets Android 12 (S, SDK 31).
- Miscellaneous changes.
### v0.21
- Fixed crashing Tomatot Debloater page.
- Fixed crashing app when root access is unavailable.
- Updated gradle plugin.
- Miscellaneous changes.
### v0.20
- De-Bloater now handles updated system apps.
- Improved backup/restore profiles.
- Miscellaneous changes.
### v0.19
- Largely improved app UI response.
- Replaced deprecated AsyncTask with a custom one.
- Added a welcome screen on the first app launch.
- Cleaned a lot of unnecessary code and largely improved coding quality.
- Enhanced Tomatot debloater.
- A lot more improvements under-the-hood.
### v0.18
- Improved case sensitivity in searching.
- Updated gradle build tools.
- Miscellaneous changes.
### v0.17
- Allow debloating more apps (e.g. from /system_ext (need more testing) and /product/priv-app folders).
- Added Polish & German translations and updated others.
- Updated gradle plugin.
- Internal improvements.
- Miscellaneous changes.
### v0.16
- Updates for Android 11.
- App will now targets latest SDK.
- Implement own file picker for restore activities.
- Improved searching.
- Miscellaneous changes.
### v0.15
- Added a top TabLayout to easily switch app types.
- Fixed likely crashes on Android 11.
- Miscellaneous changes.
### v0.14
- Added Spanish and Italian translations.
- Updated some options in about page.
- Miscellaneous changes.
### v0.13
- Improved Universal Android and Tomatot debloater.
- Updated Turkish and Russian translation.
- Updated storage handling for Android 10 and above.
- Updated build tools and dependencies.
- Miscellaneous changes.
### v0.12
- Adapted Universal Android Debloater by @W1nst0n.
- Re-organized and largely improved coding.
- Slightly improved app UI.
- Added a start-up warning message.
- Temporarily fixed storage relates issues on Android 11.
- Updated build tools and dependencies.
- Miscellaneous changes.
### v0.11
- Added Turkish translations.
- Miscellaneous changes.
### v0.10
- Workaround to disable auto-update check on installation from F-Droid.
- Added detailed change-logs and licence views.
- Miscellaneous changes.
### v0.9
- Introduced a signature check to avoid conflicts with F-Droid.
### v0.8
- Updated Russian & Ukrainian translations.
- Updates for F-Droid submission.
- Miscellaneous changes.
### v0.7
- Use Magisk BusyBox binaries as much as possible.
- Updated app icon.
- Miscellaneous changes.
### v0.6
- Added backup and restore options.
- Use material style elements as much as possible.
- Miscellaneous changes.
### v0.5
- Added custom script page.
- Switched to blue accent color.
- Added Ukrainian translation.
- Updated Russian translation.
- Miscellaneous changes.
### v0.4
- Fixed search results occasionally duplicating.
- Colorize (with accent) titles on recycle view.
- Added a donate option.
- Added Russian translation.
- Added option to reverse app list.
- Miscellaneous changes.
### v0.3
- Added option to show apps from specific folders.
- Improved inactive app handling.
- Show app logo on startup.
- Improved app searching.
- Miscellaneous changes.
### v0.2
- Added options to sort active packages by name or package id.
- Improved restoring de-bloated apps.
- Implemented separate pop-up menu for individual pages.
- Slightly improved app UI.
- Miscellaneous changes.
### v0.1
- Initial release.

View file

@ -0,0 +1,23 @@
---
layout: default
title: Contributions
permalink: /contribute/
---
<style>
tab1 { padding-left: 4em; }
</style>
## Contribute to De-Bloater
<p style="text-align: justify;"><tab1>De-Bloater is, and as always, an open-source project which is ready to accept contributions from others. The application gladly received contributions from a number of people from time to time, mostly with translations. An incomplete list of people who contributed to this project, directly or indirectly, is available <a href="https://github.com/sunilpaulmathew/De-Bloater#credits" target="_blank">here</a>.</tab1></p>
Some potential ways to contribute to this project includes, but not limited to
<ol>
<li><b>Developers</b> - Improve De-Bloater by sending <a href="https://github.com/sunilpaulmathew/De-Bloater" target="_blank">pull requests</a>.</li>
<li><b>Expert User</b> - Thoroughly testing De-Bloater and <a href="https://github.com/sunilpaulmathew/De-Bloater/issues/new/" target="_blank">report issues</a>, if any, at GitHub</li>
<li><b>Translators</b> - <a href="https://poeditor.com/join/project?hash=BZS89Ev3WG" target="_blank">Translate</a> De-Bloater into your local language (or improve the existing translations).</li>
<li><b>General</b> - Consider supporting the development by sending a <a href="{{ site.github.url }}/donations/">donation</a>.</li>
<li><b>General</b> - Help to improve anything related to De-Bloater (app, website, etc) you think beneficial.</li>
</ol>

15
docs/pages/disclaimer.md Normal file
View file

@ -0,0 +1,15 @@
---
layout: default
title: Disclaimer
permalink: /disclaimer/
---
<style>
tab1 { padding-left: 4em; }
</style>
## Disclaimer
<p style="text-align: justify;"><tab1>De-Bloater is free and open-source: you can redistribute it and/or modify it under the terms of the <b>GNU General Public License</b> as published by the <i>Free Software Foundation</i>, either version 3 of the License, or (at your option) any later version.</tab1></p>
<p style="text-align: justify;"><tab1>However, please be noted that De-Bloater is distributed in the hope that it will be useful, but <b>WITHOUT ANY WARRANTY</b>; without even the implied warranty of <b>MERCHANTABILITY</b> or <b>FITNESS FOR A PARTICULAR PURPOSE</b>. See the GNU General Public License (<a href="http://www.gnu.org/licenses/" target="_blank">http://www.gnu.org/licenses/</a>) for more details.</tab1></p>

26
docs/pages/donations.md Normal file
View file

@ -0,0 +1,26 @@
---
layout: default
title: Donations
permalink: /donations/
---
<style>
tab1 { padding-left: 4em; }
</style>
## Support the development of De-Bloater
<p style="text-align: justify;"><tab1>If you like to appreciate the efforts of developer to provide De-Bloater free (always available in GitHub release page), non-intrusive and without Ads, please consider supporting the development in some way. Maintaining this project takes a lot of time. So, each and every support from the android community will be hugely appreciated.</tab1></p>
<p><a href="https://github.com/sponsors/sunilpaulmathew" target="_blank"><img src="https://github.com/SmartPack/SmartPack.github.io/blob/master/assets/pic014.png?raw=true" alt="" height="60" /></a> <a href="https://liberapay.com/sunilpaulmathew/donate" target="_blank"><img src="https://liberapay.com/assets/widgets/donate.svg" alt="" height="60" /></a> <a href="https://www.paypal.me/menacherry" target="_blank"><img src="https://github.com/SmartPack/SmartPack.github.io/blob/master/assets/pic005.png?raw=true" alt="" height="60" /></a> <a href="https://ko-fi.com/sunilpaulmathew" target="_blank"><img src="https://github.com/SmartPack/SmartPack.github.io/blob/master/assets/pic010.png?raw=true" alt="" height="60" /></a> <a href="https://play.google.com/store/apps/details?id=com.smartpack.donate" target="_blank"><img src="https://github.com/SmartPack/SmartPack.github.io/blob/master/assets/pic009.png?raw=true" alt="" height="60" /></a></p>
<p><strong>GitHub Sponsors page</strong>: <a href="https://github.com/sponsors/sunilpaulmathew" target="_blank">https://github.com/sponsors/sunilpaulmathew</a><br><strong>Liberapay Donation url</strong>: <a href="https://liberapay.com/sunilpaulmathew/donate" target="_blank">https://liberapay.com/sunilpaulmathew/donate</a><br><strong>PayPal Donation url</strong>: <a href="https://www.paypal.me/menacherry" target="_blank">https://www.paypal.me/menacherry</a><br><strong>PayPal Donation email</strong>: <a href="mailto:sunil.kde@gmail.com">sunil.kde@gmail.com</a><br><strong>Ko-fi Donation url</strong>: <a href="https://ko-fi.com/sunilpaulmathew" target="_blank">https://ko-fi.com/sunilpaulmathew</a>
</p>
Some other ways to support the development includes, but not limited to
<ol>
<li>Buy De-Bloater from <a href="https://play.google.com/store/apps/details?id=com.sunilpaulmathew.debloater" target="_blank">Google Play</a>. It's very cheap, but still capable to support the development.</li>
<li>If you already purchased the De-Bloater, please consider rating or/and reviewing the same in <a href="https://play.google.com/store/apps/details?id=com.sunilpaulmathew.debloater" target="_blank">Google Play</a> (It's free)!</li>
<li>Help to <a href="https://poeditor.com/join/project?hash=BZS89Ev3WG" target="_blank">translate</a> De-Bloater into your local language (or improve existing translations).</li>
<li>Share good words about De-Bloater with others (family, friends, and other enthusiastic android users).</li>
</ol>

26
docs/pages/general.md Normal file
View file

@ -0,0 +1,26 @@
---
layout: default
title: General
permalink: /general/
---
<style>
tab1 { padding-left: 4em; }
</style>
## General
<p style="text-align: justify;"><tab1>De-Bloater is an application using the power of Magisk/Kernel SU/APatch to de-bloat unwanted applications systemless-ly. The application is available to download via <a href="https://play.google.com/store/apps/details?id=com.sunilpaulmathew.debloater" target="_blank">Google Play</a> or <a href="https://f-droid.org/packages/com.sunilpaulmathew.debloater" target="_blank">F-Droid</a>.</tab1></p>
### Requirement
<p style="text-align: justify;"><tab1>De-Bloater requires <b>Root Access</b> and a fully functional <b>Magisk</b> or Kernel SU/APatch environment, including modules, for proper working. As a result, De-Bloater won't work with other rooting solutions as well as in Magisk core-only mode.</tab1></p>
### How to Use
<p style="text-align: justify;"><tab1>Open the app, click the remove button on each app you want to remove. The selected apps will be removed systemless-ly after a reboot. To restore an app, selectively restore it from the second page (Inactive Applications) of De-Bloater. Please note that a restart is necessary to get any of these changes in effect.</tab1></p>
### How it works
<p style="text-align: justify;"><tab1>The app will systemless-ly replace the selected APKs by making a Magisk/Kernel SU/APatch module. As a result, you will see a new Module (name: De-bloater).</tab1></p>
### Troubleshooting
<p style="text-align: justify;"><tab1>In case, if you accidentally remove some important apps and your phone bootloops, please delete <b>"/data/adb/modules/De-bloater"</b> via recovery.</tab1></p>

20
docs/pages/permissions.md Normal file
View file

@ -0,0 +1,20 @@
---
layout: default
title: Permissions
permalink: /permissions/
---
<style>
tab1 { padding-left: 4em; }
</style>
## Permissions Explained
<p style="text-align: justify;"><tab1>As a privacy-friendly application, De-Bloater only demands the very necessary permissions required to offer the promised features, and are</tab1></p>
<ol>
<li><b>ACCESS_SUPERUSER</b> - required to handle several tasks that demand root permissions.</li>
<li><b>INTERNET</b> & <b>REQUEST_INSTALL_PACKAGES</b> - required to handle app-updates (only applicable for GitHub version).</li>
<li><b>WRITE_EXTERNAL_STORAGE</b> - necessary to export de-bloated applications list to device storage for later use.</li>
<li><b>QUERY_ALL_PACKAGES</b> - necessary permission to get most applications visible in Android 11 and above.</li>
</ol>

View file

@ -0,0 +1,13 @@
---
layout: default
title: Privacy Policy
permalink: /privacy-policy/
---
<style>
tab1 { padding-left: 4em; }
</style>
## Privacy Policy
<p style="text-align: justify;"><tab1>The developer of De-Bloater respects the privacy of end-users. Therefore, De-Bloater doesn't collect or share any kind of user data, including the sensitive ones from a device. Please read the complete Privacy Policy <a href="https://smartpack.github.io/privacy-policy/" target="_blank">here</a>. Moreover, De-Bloater is, and always will be, an open-source application, which allows anyone to inspect the source code and find potential flows if any.</tab1></p>