🛠️ Remove EXTERNAL_STORAGE permission explicitly

* Even though not requested, it still persisted (which was not the intention)
This commit is contained in:
Acclorite 2025-03-15 11:20:27 +02:00
parent c49e7f9500
commit 3fb8c18cec

View file

@ -5,6 +5,22 @@
<uses-permission <uses-permission
android:name="ua.acclorite.book_story.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION" android:name="ua.acclorite.book_story.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
tools:node="remove" /> tools:node="remove" />
<uses-permission
android:name="ua.acclorite.book_story.debug.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
tools:node="remove" />
<uses-permission
android:name="ua.acclorite.book_story.release.debug.DYNAMIC_RECEIVER_NOT_EXPORTED_PERMISSION"
tools:node="remove" />
<!-- Removing READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE explicitly -->
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
tools:node="remove"
tools:ignore="ScopedStorage" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:node="remove"
tools:ignore="ScopedStorage" />
<application <application
android:name=".Application" android:name=".Application"