We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2697ef commit d4b0e9bCopy full SHA for d4b0e9b
Readme.md
@@ -26,9 +26,20 @@ The first step is to prepeare your Android Studio's 'build.gradle' files (Projec
26
27
<b>Project level</b>
28
29
-Insert the folowing line in 'allprojects':
+Insert in 'allprojects' the following line:
30
31
maven { url 'https://jitpack.io' }
32
+
33
34
+<b>Module level (usually your 'app'- module)</b>
35
36
+Insert in 'dependencies' this line:
37
38
+ implementation 'com.github.codingbychanche:FileDialogTool:master-SNAPSHOT'
39
40
+In the example above the 'SNAPHOT'- tag is used to download the latest version of the code. You should
41
+check for the latest release under the 'Relase' tab of this repository and use that instead to
42
+import a stable release.
43
44
45
0 commit comments