forked from dvoiss/SensorAnnotations
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (36 loc) · 1.22 KB
/
build.gradle
File metadata and controls
43 lines (36 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import org.gradle.internal.jvm.Jvm
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
apply from: '../config/quality/quality.gradle'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
consumerProguardFiles 'proguard-rules.txt'
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
compileOptions {
sourceCompatibility sourceCompatibilityVersion
targetCompatibility targetCompatibilityVersion
}
}
dependencies {
compile project(':sensorannotations-annotations')
compile deps.supportannotations
testCompile project(':sensorannotations-compiler')
testCompile deps.junit
testCompile deps.truth
testCompile deps.robolectric
testCompile deps.compiletesting
testCompile files(Jvm.current().getRuntimeJar())
testCompile files(Jvm.current().getToolsJar())
}
publish {
userOrg = 'dvoiss'
groupId = 'com.dvoiss'
artifactId = 'sensorannotations'
publishVersion = rootProject.ext.version
description = 'Annotate methods to use as listeners for a specific sensor.'
website = 'https://github.com/dvoiss/sensorannotations'
}