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
36apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply from: '../publishing.gradle'
android {
namespace 'com.airbnb.epoxy.paging3'
defaultConfig {
minSdkVersion rootProject.MIN_SDK_VERSION
compileSdk rootProject.COMPILE_SDK_VERSION
targetSdkVersion rootProject.TARGET_SDK_VERSION
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
}
kotlin {
jvmToolchain(11)
}
dependencies {
api rootProject.deps.androidPaging3Component
api project(':epoxy-annotations')
api project(':epoxy-adapter')
testImplementation rootProject.deps.junit
testImplementation rootProject.deps.robolectric
testImplementation rootProject.deps.mockito
testImplementation rootProject.deps.kotlinCoroutinesTest
androidTestImplementation rootProject.deps.junit
androidTestImplementation rootProject.deps.androidArchCoreTesting
androidTestImplementation rootProject.deps.androidTestRunner
kaptAndroidTest project(":epoxy-processor")
}