How to Fix Exception ‘open failed: EACCES (Permission denied)’ on Android 11/12

Today, I was working with my old program, which I had made in December 2020. Due to some odd reason, I delayed my app development process.

An application was working a few months ago when suddenly the app crashed with the error Exception ‘open failed: EACCES (Permission denied)’.

The application workflow was pretty simple. When the user clicks on the “Share Button” programmatically, the application will take a screenshot and use the explicit intent to send screenshots using any applications that support image share.

I took a paused for a moment and started thinking, What has suddenly happened to the project? If you read the error, it says something is wrong with the permissions.

Instantly, I checked the permissions code and found everything good. When I opened the Android manifest, I found the culprit: “WRITE_EXTERNAL_STORAGE no longer provides write access when targeting Android 10+.”

Exception 'open failed: EACCES (Permission denied) error message
AndroidManifest.xml

The problem starts getting clearer.

I open build.gradle and checked target version are changed to API 30 (Android 11) somehow.

build.gradle
build.gradle

As usual, I did research and found that the application target for SDK 29 or later uses scoped storage as the default option.

If you are thinking, What is Scoped Storage? I’ll clarify to you that Scoped Storage sets a limit on the access file.

For example, if my XYZ application is stored in a specific directory location, want to upload photos from any other directory other than the application directory, I’ll not be allowed to access the file according to the new Google policy.

So we’ve got the problem; tell me, Gagan, how to resolve this? You can use the MediaStore method or simply use the Legacy Storage policy.

How to resolve abov error using LegacyStorage?

We need to pass the single line of code, which will turn off the flag for Android 10+ devices, and you will be allowed to use LegacyStorage.

Go to the project pane, click on AndroidManifest, and add the highlighted code inside <application>.

<manifest ... > 
 <application 
    ...
    android:requestLegacyExternalStorage="true" ..>
    ...
  </application>
</manifest>

Changes should be like this below sample image.

Exception 'open failed: EACCES (Permission denied)'
Add requestLegacyExternalStorage

Once you add requestLegacyExternalStorage = “true” under the <application> tag. That’s all for Android 10 or 11 users. You can test your application.

For Android 12, users need to add one more tag in AndroidManifest.xml that is “android:exported=”true” for the MainActivity.

Exception 'open failed: EACCES (Permission denied)': Add exported tag
Add exported tag

Run the application and your application functions will start working again.

Also Read: How to fix exposed beyond app through ClipData.Item.getUri

Wrap up

That’s it to resolve Exception ‘open failed: EACCES (Permission denied)’. If you are still facing any issues while following this guide, please let us know in the comment section.

For your ease, we have uploaded a sample project to the GitHub repository. To clone the repository click on this link.

What are your thoughts about this article?

0 0 votes
Article Rating
Subscribe
Notify of
guest
20 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Proyo
Proyo
3 years ago

this will not work in android 11

Prasanth
Prasanth
Reply to  Gagan Mishra
3 years ago

What is the solution for it in Android 11?

Prajwal
Prajwal
Reply to  Gagan Mishra
2 years ago

did you uploaded the article?

coder
coder
Reply to  Proyo
3 years ago

what to do for android 11

Smh
Smh
Reply to  coder
3 years ago

android manifest in app

<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>

you need to add

Ruud
Ruud
3 years ago

Thank you !. Google is insane with every day new rules.

Denis
Denis
Reply to  Ruud
3 years ago

Hello everyone. thanks for the solution.

But in my case, that insertion does not work.
I am now developing a mobile app with react native.
The trouble is occured when I try to put the file on firebase storage.
Of course, I inserted that line of code to my androidmanifest.xml file.

<application
      android:name=”.MainApplication”
      android:label=”@string/app_name”
      android:icon=”@mipmap/ic_launcher”
      android:roundIcon=”@mipmap/ic_launcher_round”
      android:allowBackup=”false”
      android:theme=”@style/AppTheme”
      android:requestLegacyExternalStorage=”true”
>
And this is the bulidscript
buildscript {
    ext {
        buildToolsVersion = “29.0.3”
        minSdkVersion = 21
        compileSdkVersion = 29
        targetSdkVersion = 29
        ndkVersion = “20.1.5948944”
        playServicesVersion = “17.0.0”
        androidMapsUtilsVersion = “2.2.3”
    }

}
And this is the uploading script
// uploads file
    const pngRef = storage().ref(avatar/upload.png);
    console.log(“pngRef”pngRef);
    await pngRef.putFile(fileUri);
    const url = await storage()
      .ref(avatar/upload.png)
      .getDownloadURL();
    console.log(“url”url);
Is there any solution with this? Is this the firebase error?
I will be happy if anyone helps me.

Last edited 3 years ago by Denis
Vinay
Vinay
3 years ago

I have tried to add the below line in application tag
android:requestLegacyExternalStorage=”true”

But I am getting the below error while building the app

error: attribute android:requestLegacyExternalStorage not found.

Yenn
Yenn
2 years ago

Thank you so much because I finally fixed the issue with my program like creating a directory. I’ve been looking for this solution for 3 days and now I just fixed it because of you.

mahesh Vhatkar
mahesh Vhatkar
2 years ago

Still facing issue in android 12.

Jake Redfield
Reply to  mahesh Vhatkar
2 years ago

Will you share more details about the error you were facing?

Peter Willemsen
Peter Willemsen
2 years ago

Yes, thank you very much !!!.
I am being frustrated by everyday new Google rules.

Allam
1 year ago

Good post but, not work, is the same error. I have

and

….
….

……
……
……

rashnk
rashnk
1 year ago

if (!PermissionHelper.hasPermission(this, Manifest.permission.MANAGE_EXTERNAL_STORAGE)) {
PermissionHelper.requestPermission(this, SAVE_TO_ALBUM_SEC, Manifest.permission.MANAGE_EXTERNAL_STORAGE);
} else {
this.getImage(this.srcType, destType);
}

not working

Yash
Yash
5 months ago

I am getting Exception ‘open failed: EACCES (Permission denied)’ and i am using Api level 33

Aman
Aman
4 months ago

Still facing the error