1<!-- BEGIN_INCLUDE(file_provider_paths_declaration) -->
2<paths xmlns:android="http://schemas.android.com/apk/res/android">
3    <!-- Offer access to files under Context.getFilesDir() + "thumbs/"
4         through alias "my_thumbs" -->
5    <files-path name="my_thumbs" path="thumbs/" />
6
7    <!-- Offer access to files under Environment.getExternalStorageDirectory()
8         through alias "my_external" -->
9    <external-path name="my_external" />
10
11    <!-- Offer access to files under Context.getCacheDir() -->
12    <cache-path name="my_cache" />
13</paths>
14<!-- END_INCLUDE(file_provider_paths_declaration) -->
15