forked from jacek-marchwicki/JavaWebsocketClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
58 lines (51 loc) · 1.42 KB
/
build.gradle
File metadata and controls
58 lines (51 loc) · 1.42 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
}
}
apply plugin: 'com.android.application'
repositories {
mavenCentral()
jcenter()
maven { url 'https://commondatastorage.googleapis.com/maven-repository/' }
}
dependencies {
compile project(":websockets-rxjava")
compile 'io.reactivex:rxandroid:0.24.0'
compile 'com.android.support:recyclerview-v7:25.3.0'
compile 'com.android.support:support-v4:25.3.0'
compile 'com.google.guava:guava:20.0'
compile "com.google.code.gson:gson:2.7"
//compile "com.appunite:websockets:1.0"
testCompile "org.hamcrest:hamcrest-all:1.3"
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'com.google.truth:truth:0.25'
testCompile 'com.google.guava:guava:20.0'
}
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
defaultConfig {
minSdkVersion 9
targetSdkVersion 25
}
buildTypes {
release {
proguardFiles = [getDefaultProguardFile('proguard-android.txt'), 'src/main/proguard-project.txt']
}
}
lintOptions {
disable 'InvalidPackage'
textOutput "stdout"
textReport true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}