apply plugin: 'com.android.library' android { compileSdkVersion 23 buildToolsVersion "26.0.2" defaultConfig { minSdkVersion 21 targetSdkVersion 23 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') compile 'com.android.support:appcompat-v7:23.4.0' testCompile 'junit:junit:4.12' compile project(':ruffy-spi') compile 'org.slf4j:slf4j-api:1.7.12' compile 'com.google.guava:guava:20.0' }