add info on permission

This commit is contained in:
Anthony Calosa
2024-10-21 20:43:54 +08:00
parent f3aa3c53ed
commit 05ce94d36f

View File

@@ -5,10 +5,23 @@
<uses-sdk
android:minSdkVersion="26"
android:targetSdkVersion="35" />
<!-- When your app targets Android 11 or higher and it declares the MANAGE_EXTERNAL_STORAGE permission,
Android Studio shows the lint warning. This warning reminds you that the Google Play store has a policy
that limits usage of the permission. -->
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
<!-- Required only if your app needs to access images or photos
that other apps created. -->
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<!-- Required only if your app needs to access videos
that other apps created. -->
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<!-- Required only if your app needs to access audio files
that other apps created. -->
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <!-- This one needs Android Runtime Permission for Android 6+ -->
<!-- This one needs Android Runtime Permission for Android 6+ -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="29" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.VIBRATE"/>