apply plugin: 'com.android.library' sourceCompatibility = 1.6 targetCompatibility = 1.6 apply plugin: 'witness' apply plugin: 'com.neenbedankt.android-apt' repositories { maven { url 'http://repo1.maven.org/maven2' } } android { compileSdkVersion 23 buildToolsVersion "23.0.2" defaultConfig { minSdkVersion 10 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':briar-api') compile project(':briar-core') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.2.0' testApt 'com.google.dagger:dagger-compiler:2.0.2' provided 'javax.annotation:jsr250-api:1.0' compile 'cglib:cglib-nodep:3.1' testCompile project(':briar-tests') }