View on GitHub

Common libraries

slf4android

Delegate setLevel to FileHandler
dependencies {
    compile 'pl.brightinventions:slf4android:0.1.2@aar'
    //your other dependencies
}

You can use this repository as a maven repo in your gradle build. Example of working build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:PUT_SPECFIC_VERSION_HERE+'
    }
}

repositories {
    mavenCentral()
    mavenLocal()
    maven {
        url "http://bright.github.io/maven-repo/"
    }
}

apply plugin: 'com.android.application'

dependencies {
    compile 'pl.brightinventions:slf4android:0.1.2@aar'
    //your other dependencies
}

android {
  //android build setup
}