Browse Source

Merge pull request #239 from Jacse/cache-dir

Update provider_paths.xml to allow access to cache
Travis Nuttall 5 years ago
parent
commit
86dc3862d9
No account linked to committer's email address
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      android/src/main/res/xml/provider_paths.xml

+ 4
- 1
android/src/main/res/xml/provider_paths.xml View File

6
     <files-path
6
     <files-path
7
         name="files-path"
7
         name="files-path"
8
         path="." /> <!-- Used to access into application data files -->
8
         path="." /> <!-- Used to access into application data files -->
9
-</paths>
9
+    <cache-path
10
+        name="cache-path"
11
+        path="." /> <!-- Used to access files in cache directory -->
12
+</paths>