Skip to content

Commit 2c05b31

Browse files
Update Readme.md
1 parent d4b0e9b commit 2c05b31

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

Readme.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
File Dialog Tool
2-
----------------
3-
File Dialog Tool is an activity which alows browsing the file system of your
2+
================
3+
File Dialog Tool is an activity which allows browsing the file system of your
44
device and pick file paths for loading or saving data.
55

66
An example of how to use this library in your own project can be found here: [Example app mainActivity](app/src/main/java/berthold/filedialog)
77

88
Screenshots
9-
===========
9+
-----------
1010

1111
![](2.png)
1212

@@ -21,7 +21,7 @@ When called with 'save- file' option, a floatig action button to do so is displa
2121
Preview feature.
2222

2323
Import this library into your own Android Studio project
24-
========================================================
24+
--------------------------------------------------------
2525
The first step is to prepeare your Android Studio's 'build.gradle' files (Project level and module level).
2626

2727
<b>Project level</b>
@@ -41,6 +41,15 @@ In the example above the 'SNAPHOT'- tag is used to download the latest version o
4141
check for the latest release under the 'Relase' tab of this repository and use that instead to
4242
import a stable release.
4343

44+
Permissions
45+
-----------
46+
Add the following permissions to your app's 'manifest'- file:
47+
48+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
49+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
50+
51+
Before starting the app for the first time on your device, you need to set the app's permission to access
52+
internal memory (got to settings => app => permissions).
4453

4554

4655

0 commit comments

Comments
 (0)