mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 10:49:06 +01:00
28 lines
858 B
Groovy
28 lines
858 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
|
|
consumerProguardFiles getDefaultProguardFile('proguard-android.txt'), '../briar-android/proguard-rules.txt'
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testCompile project(':briar-tests')
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'net.jodah:concurrentunit:0.4.2'
|
|
testCompile 'com.android.support:appcompat-v7:23.2.1'
|
|
testApt 'com.google.dagger:dagger-compiler:2.0.2'
|
|
provided 'javax.annotation:jsr250-api:1.0'
|
|
}
|