From f17bc00a00130025a60f7156541fa9ac0bd91a21 Mon Sep 17 00:00:00 2001 From: offa Date: Thu, 1 Jul 2021 21:17:23 +0200 Subject: [PATCH 1/2] docs: permission documentation --- README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9891326b9..50fe98c64 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ GitHub release - + Minimum SDK @@ -58,6 +58,12 @@ I primarily built Auxio for myself, but you can use it too, I guess. - Liked songs - More notification actions +## Permissions + +- Storage (`READ_EXTERNAL_STORAGE`): to read and play your media files +- Services (`FOREGROUND_SERVICE`, `WAKE_LOCK`): to keep the music playing even if the app itself is in background +- Network (`ACCESS_NETWORK_STATE`): unknown + ## Contributing Auxio accepts most contributions as long as they follow the [Contribution Guidelines](/.github/CONTRIBUTING.md). @@ -66,10 +72,10 @@ However, feature additions and major UI changes are less likely to be accepted. ## License -[![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](http://www.gnu.org/licenses/gpl-3.0.en.html) +[![GNU GPLv3 Image](https://www.gnu.org/graphics/gplv3-127x51.png)](http://www.gnu.org/licenses/gpl-3.0.en.html) Auxio is Free Software: You can use, study share and improve it at your will. Specifically you can redistribute and/or modify it under the terms of the [GNU General Public License](https://www.gnu.org/licenses/gpl.html) as published by the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. \ No newline at end of file +(at your option) any later version. From cb74196155e85f310f91b0de04b8cb19f01bcb00 Mon Sep 17 00:00:00 2001 From: OxygenCobalt Date: Fri, 2 Jul 2021 08:38:13 -0600 Subject: [PATCH 2/2] docs: remove access_network_state Remove ACCESS_NETWORK_STATE from the README document, as it was disabled in f1f2fcf. --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 50fe98c64..cc5c98487 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,6 @@ I primarily built Auxio for myself, but you can use it too, I guess. - Storage (`READ_EXTERNAL_STORAGE`): to read and play your media files - Services (`FOREGROUND_SERVICE`, `WAKE_LOCK`): to keep the music playing even if the app itself is in background -- Network (`ACCESS_NETWORK_STATE`): unknown ## Contributing