forked from pires/android-obd-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (42 loc) · 997 Bytes
/
build.gradle
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
44
45
46
47
48
49
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
}
}
repositories {
mavenLocal()
mavenCentral()
}
apply plugin: 'com.android.application'
repositories {
mavenLocal()
mavenCentral()
}
android {
compileSdkVersion 22
android.buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
applicationId 'com.github.pires.obd.reader'
}
lintOptions {
abortOnError false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.github.pires:obd-java-api:1.0-RC16'
compile 'org.roboguice:roboguice:3.+'
provided 'org.roboguice:roboblender:3.+'
compile 'com.squareup.retrofit:retrofit:1.9.0'
}