mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
53 lines
1.5 KiB
Groovy
53 lines
1.5 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'witness'
|
|
apply plugin: 'com.neenbedankt.android-apt'
|
|
|
|
repositories {
|
|
maven { url 'http://repo1.maven.org/maven2' }
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
dexOptions {
|
|
incremental true
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile project(':briar-api')
|
|
compile project(':briar-core')
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'net.jodah:concurrentunit:0.4.2'
|
|
compile 'com.android.support:appcompat-v7:23.1.1'
|
|
testApt 'com.google.dagger:dagger-compiler:2.0.2'
|
|
provided 'javax.annotation:jsr250-api:1.0'
|
|
testCompile project(':briar-tests')
|
|
}
|
|
|
|
dependencyVerification {
|
|
verify = [
|
|
'com.android.support:appcompat-v7:0a8762214382b7e8d4b989b4ac10b5c846b957d767ccb7bccbc6be5afa885a82',
|
|
'com.android.support:support-v4:5c7dceb6c824089fe80f502e5206264048ef8bffa4e8ddeab180b81723e79b7f',
|
|
'com.android.support:support-annotations:f347a35b9748a4103b39a6714a77e2100f488d623fd6268e259c177b200e9d82',
|
|
]
|
|
}
|