forked from florent37/Android-OkGraphQl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
38 lines (30 loc) · 1.02 KB
/
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
apply plugin: 'com.android.application'
android {
compileSdkVersion project.sdk
buildToolsVersion project.buildTools
defaultConfig {
minSdkVersion project.minSdk
targetSdkVersion project.sdk
applicationId "florent37.github.com.rxgraphql"
versionCode 1
versionName "1.0"
jackOptions.enabled = true
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}
dependencies {
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.squareup.okhttp3:logging-interceptor:3.8.1'
compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
compile 'com.facebook.stetho:stetho:1.5.0'
compile 'com.facebook.stetho:stetho-okhttp3:1.5.0'
compile 'com.jakewharton:butterknife:8.5.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
compile project(':okgraphql')
compile 'io.reactivex.rxjava2:rxjava:2.1.0'
compile 'com.squareup.okhttp3:okhttp:3.8.1'
compile 'com.google.code.gson:gson:2.8.0'
}