Image capture issue in API level 24 and above – Resolved

Updated 25 August 2017

Save

As I was working with the camera app trying to get the image URI from it. My app crashed and I was not able to open the camera. This was happening in the devices which as API level greater than 24. The code works fine for lesser API levels.

The actual problem was the way in which I was trying to manage files from one app (the main app) to the other (the camera app, which is a server app). The old file Uri scheme is banned for the apps with targetSDKVersion of 24 and higher.

The solution to this issue is that the developer should use a File Provider in order to manage files from one app to another. You can follow the below steps to resolve this issue.

1) Add a provider in the “AndroidManifest.xml” file

 

2) Define a “provider_paths.xml” file under your “xml” folder in “res” folder.

 

3) And in your activity you can replace

to

Or you can use both as

 

That’s all !!! Just follow these simple steps and you are good to go.

Thank you very much. This is Vedesh Kumar signing off.

 

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home