From 7d60c4c15c590d9cac50708ecc0e23e211765f96 Mon Sep 17 00:00:00 2001 From: Dmitry Zaitsev Date: Wed, 12 Jul 2017 22:32:40 +0200 Subject: [PATCH] Update README.md --- README.md | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index dda0b14..ef28b66 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ FaceDetector is: - detects faces - works on Android - very simple to use -- comes with (https://github.com/Fotoapparat/Fotoapparat)[Fotoapparat] integration (but you can use it with whatever you like) +- comes with [Fotoapparat](https://github.com/Fotoapparat/Fotoapparat) integration (but you can use it with whatever you like) - with a C++ core which can easily be ported to iOS (we have plans for that) ## How it works @@ -71,5 +71,32 @@ And you are good to go! Add dependency to your `build.grade` ```groovy +repositories { + maven { + url "http://dl.bintray.com/fotoapparat/fotoapparat" + } +} +compile 'io.fotoapparat:facedetector:1.0.0' + +// If you are using Fotoapparat add this one as well +compile 'io.fotoapparat.fotoapparat:library:1.1.0' +``` + +## License + +``` +Copyright 2017 Fotoapparat + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. ```