aboutsummaryrefslogtreecommitdiff
path: root/integration_tests/room/build.gradle
blob: 4a12143be86ed6005ff6c675a22fede57923ddd9 (plain)
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
import org.robolectric.gradle.AndroidProjectConfigPlugin

apply plugin: 'com.android.library'
apply plugin: AndroidProjectConfigPlugin

android {
    compileSdk 34
    namespace 'org.robolectric.integrationtests.room'

    defaultConfig {
        minSdk 19
        targetSdk 34
    }

    compileOptions {
        sourceCompatibility = '1.8'
        targetCompatibility = '1.8'
    }

    testOptions {
        unitTests {
            includeAndroidResources = true
        }
    }
}

dependencies {
    // Testing dependencies
    testImplementation project(":testapp")
    testImplementation project(":robolectric")
    testImplementation libs.junit4
    testImplementation libs.guava.testlib
    testImplementation libs.guava.testlib
    testImplementation libs.truth
    implementation libs.androidx.room.runtime
    annotationProcessor libs.androidx.room.compiler
}