forked from ReactiveX/RxJava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
32 lines (28 loc) · 857 Bytes
/
build.gradle
File metadata and controls
32 lines (28 loc) · 857 Bytes
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "20"
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
// make sure we always compile against the latest version of RxJava
def rootProjectProperties = new Properties()
file("../../../gradle.properties").withReader { reader ->
rootProjectProperties.load(reader)
properties.putAll(rootProjectProperties)
}
dependencies {
def rxjVersion = rootProjectProperties.get("version")
compile "com.netflix.rxjava:rxjava-android:$rxjVersion"
compile fileTree(dir: 'libs', include: ['*.jar'])
}