diff options
author | Christian Schneppe <christian@pix-art.de> | 2017-02-05 22:39:24 +0100 |
---|---|---|
committer | Christian Schneppe <christian@pix-art.de> | 2017-02-05 22:39:24 +0100 |
commit | dbb38cccf968ac4c97b643613497457b32cf29df (patch) | |
tree | dd02e3794591de3b3590ce26c94b0c2fbee90d20 /src/main/res/xml | |
parent | 31fc730653bd3a1a5a323eabd41194a90bd29448 (diff) |
make updater work in Android N
fixes #98
Diffstat (limited to '')
-rw-r--r-- | src/main/res/xml/file_paths.xml | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/src/main/res/xml/file_paths.xml b/src/main/res/xml/file_paths.xml index 5cf2e6604..9390b53c3 100644 --- a/src/main/res/xml/file_paths.xml +++ b/src/main/res/xml/file_paths.xml @@ -3,8 +3,19 @@ <external-path name="external" path="/" /> - <files-path path="Images/" name="pictures" /> - <files-path path="Videos" name="videos"/> - <files-path path="Files/" name="files" /> - <files-path path="Audios/" name="audios" /> + <files-path + name="pictures" + path="Images/" /> + <files-path + name="videos" + path="Videos" /> + <files-path + name="files" + path="Files/" /> + <files-path + name="audios" + path="Audios/" /> + <files-path + name="update" + path="Update/" /> </paths>
\ No newline at end of file |