This repo is deprecated. Our open source libraries are now available on maven central.
Maven repository for our open-source projects on github.
To use our libraries, just add our repo as a new maven repository in the top-level build.gradle of your project :
allprojects {
repositories {
mavenCentral()
maven {
url 'https://github.com/tvbarthel/maven/raw/master/'
}
...
}
}
After that, you will be able to add dependency on any project listed bellow.
A library used to display dialog fragment with a blur effect behind.
Add the following lines to the build.gradle of your module :
dependencies {
...
compile 'fr.tvbarthel.lib.blurdialogfragment:lib:2.1.0@aar'
...
}
More information : BlurDialogFragment on GitHub
Credits go to Thomas Barthélémy https://github.com/tbarthel-fr and Vincent Barthélémy https://github.com/vbarthel-fr.
Copyright (C) 2014 tvbarthel
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.