Files
android_development/samples/Support4Demos/res/xml/my_paths.xml
Jeff Sharkey 29045946c0 Remove reference to <root-path>.
Bug: 8409523
Change-Id: I42834e33d0d664977dca9277ae364d2cf8986d07
2013-03-25 16:16:51 -07:00

15 lines
608 B
XML

<!-- BEGIN_INCLUDE(file_provider_paths_declaration) -->
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Offer access to files under Context.getFilesDir() + "thumbs/"
through alias "my_thumbs" -->
<files-path name="my_thumbs" path="thumbs/" />
<!-- Offer access to files under Environment.getExternalStorageDirectory()
through alias "my_external" -->
<external-path name="my_external" />
<!-- Offer access to files under Context.getCacheDir() -->
<cache-path name="my_cache" />
</paths>
<!-- END_INCLUDE(file_provider_paths_declaration) -->