narjes mansoori
narjes mansoori

Reputation: 13

What is the difference between ContentProvider and FileProvider in Android

What is the difference between ContentProvider and FileProvider?. I want received URI image when use camera .

Upvotes: 1

Views: 662

Answers (1)

ACHU
ACHU

Reputation: 58

While ContentProvider is a component that enables you to securely share any kind of data, FileProvider is used specifically for sharing the app's internal files. The FileProvider class is part of the v4 Support Library so make sure to include it in your project

Upvotes: 2

Related Questions