File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 11File 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
44device and pick file paths for loading or saving data.
55
66An 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
88Screenshots
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
2121Preview feature.
2222
2323Import this library into your own Android Studio project
24- ========================================================
24+ --------------------------------------------------------
2525The 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
4141check for the latest release under the 'Relase' tab of this repository and use that instead to
4242import 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
You can’t perform that action at this time.
0 commit comments