How can I write file in Flutter abive android 33 phone. I need to get the permission for write. Now , its show only denied.
I want to know how to ask to get permission for file read write with flutter for above android 13 phones
How can I write file in Flutter abive android 33 phone. I need to get the permission for write. Now , its show only denied.
I want to know how to ask to get permission for file read write with flutter for above android 13 phones
2
Answers
READ_EXTERNAL_STORAGE
andWRITE_EXTERNAL_STORAGE
permissions have been marked deprecated and have been fully removed/ disabled since Android SDK 33 (Android 13).If your application needs access to media files Google recommends using the
READ_MEDIA_IMAGES
,READ_MEDIA_VIDEOS
orREAD_MEDIA_AUDIO
permissions instead Read and Write permission. To request these permissions make sure the compileSdkVersion in the android/app/build.gradle file is set to 33.