You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-3Lines changed: 13 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,23 @@ The sample application (the source is in the repository) has been published onto
21
21
22
22
[](http://play.google.com/store/apps/details?id=uk.co.senab.photoview.sample)
23
23
24
-
##Gradle integration
24
+
# Gradle Dependency
25
25
26
-
Minimum code for Gradle integration, place code in your `build.gradle`
26
+
Add this in your root `build.gradle` file (**not** your module `build.gradle` file):
27
27
28
+
```gradle
29
+
allprojects {
30
+
repositories {
31
+
...
32
+
maven { url "https://jitpack.io" }
33
+
}
34
+
}
35
+
```
36
+
37
+
Then, add the library to your project `build.gradle`
0 commit comments