We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f161a8 commit 1476fd8Copy full SHA for 1476fd8
README.md
@@ -190,6 +190,7 @@ pod install
190
### Android
191
192
- Make sure you are using Gradle `2.2.x` (project build.gradle)
193
+
194
```gradle
195
buildscript {
196
...
@@ -202,6 +203,7 @@ buildscript {
202
203
```
204
205
- Add `useSupportLibrary` (app build.gradle)
206
207
208
android {
209
@@ -215,6 +217,18 @@ android {
215
217
}
216
218
219
220
+- Add required repository
221
222
+```gradle
223
+allprojects {
224
+ repositories {
225
+ ...
226
+ maven { url "https://jitpack.io" }
227
228
+ }
229
+}
230
+```
231
232
- [Optional] If you want to use camera picker in your project, add following to `AndroidManifest.xml`
233
- `<uses-permission android:name="android.permission.CAMERA"/>`
234
0 commit comments