forked from apollographql/apollo-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
32 lines (26 loc) · 861 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
apply plugin: 'com.android.application'
apply plugin: 'com.apollographql.android'
android {
compileSdkVersion androidConfig.compileSdkVersion
defaultConfig {
applicationId "com.example.apollographql.sample"
minSdkVersion androidConfig.minSdkVersion
targetSdkVersion androidConfig.targetSdkVersion
}
lintOptions {
textReport true
textOutput 'stdout'
ignore 'InvalidPackage', 'GoogleAppIndexingWarning', 'AllowBackup'
}
}
dependencies {
compileOnly dep.jetbrainsAnnotations
implementation "com.apollographql.apollo:apollo-runtime"
implementation "com.apollographql.apollo:apollo-android-support"
implementation "com.apollographql.apollo:apollo-rx2-support"
implementation dep.appcompat
implementation dep.recyclerView
implementation dep.rxandroid
implementation dep.rxjava2
testImplementation dep.junit
}