ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Mastering FileProvider in Android: Secure File Sharing Explained

Dobri Kostadinov
ProAndroidDev
Published in
5 min readSep 30, 2024

This image was generated with the assistance of AI

Introduction

What is FileProvider?

Why Use FileProvider?

1. Security

2. Compatibility

3. Flexibility

How Does FileProvider Work?

1. Defining FileProvider in Manifest

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.example.myapp.fileprovider"
android:exported="false"
android:grantUriPermissions="true">

<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />

</provider>

2. Configuring File Paths

<paths xmlns:android="http://schemas.android.com/apk/res/android">
<! - Path configurations go here →
</paths>
<files-path name="my_files" path="files/"/>
In this example, any file stored in the `files/` directory of your app’s internal storage can be accessed through the URI.
<cache-path name="my_cache" path="cache/"/>
This allows access to files in the cache directory via a content URI.
<external-path name="my_external_files" path="Android/data/com.example.myapp/files/"/>
This path is specific to your app’s external files directory. It’s useful for sharing files that your app stores on external storage.
<external-files-path name="my_external_private_files" path="files/"/>

This is typically used for files that should be managed by the app but stored on external storage.
<external-cache-path name="my_external_cache" path="cache/"/>
Files in this directory can be shared via `FileProvider` without exposing the entire external storage.
<root-path name="my_root_files" path=""/>

3. Generating a Content URI

File file = new File(context.getFilesDir(), "example.txt");
Uri uri = FileProvider.getUriForFile(context, "com.example.myapp.fileprovider", file);

4. Granting Permissions

intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);

Example Use Case

File imagePath = new File(context.getCacheDir(), "images");
File newFile = new File(imagePath, "image.png");
Uri contentUri = FileProvider.getUriForFile(context, "com.example.myapp.fileprovider", newFile);

if (contentUri != null) {
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
shareIntent.setDataAndType(contentUri, context.getContentResolver().getType(contentUri));
shareIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
startActivity(Intent.createChooser(shareIntent, "Choose an app"));
}

Conclusion

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Dobri Kostadinov

15+ years in native Android dev (Java, Kotlin). Expert in developing beautiful android native apps.

Responses (2)

Write a response

What's the relation between this, and SAF file-picker ?

--