forked from ReactiveCircus/FlowBinding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
34 lines (28 loc) · 946 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
plugins {
id 'flowbinding-plugin'
id 'com.android.library'
id 'kotlin-android'
id 'com.vanniktech.maven.publish'
id 'io.github.reactivecircus.firestorm'
id 'org.jetbrains.dokka'
}
afterEvaluate { project ->
project.tasks.dokka {
outputDirectory = "$rootDir/docs/api"
outputFormat = 'gfm'
}
}
android {
defaultConfig {
testApplicationId 'reactivecircus.flowbinding.appcompat.test'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
}
dependencies {
implementation project(':flowbinding-common')
implementation "androidx.appcompat:appcompat:${versions.androidx.appCompat}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${versions.kotlinx.coroutines}"
lintChecks project(":lint-rules")
androidTestImplementation project(':testing-infra')
androidTestImplementation project(':flowbinding-appcompat:fixtures')
}