xref: /aosp_15_r20/frameworks/base/packages/SettingsLib/tests/robotests/fragment/build.gradle (revision d57664e9bc4670b3ecf6748a746a57c557b6bc9e)
1plugins {
2    id "net.ltgt.errorprone" version "0.0.13"
3}
4
5apply plugin: 'com.android.library'
6
7android {
8    compileSdkVersion 28
9
10    android {
11        sourceSets {
12            main {
13                res.srcDirs = ['src/test/resources/res']
14            }
15        }
16        testOptions {
17            unitTests {
18                includeAndroidResources = true
19            }
20        }
21    }
22}
23
24dependencies {
25    // Project dependencies
26    compileOnly project(":robolectric")
27
28    // Compile dependencies
29    compileOnly AndroidSdk.MAX_SDK.coordinates
30    compileOnly "androidx.core:core:1.0.0-rc02"
31    compileOnly 'androidx.fragment:fragment:1.0.0-rc02'
32    compileOnly "androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01"
33    compileOnly "androidx.lifecycle:lifecycle-common:2.0.0-beta01"
34
35    // Testing dependencies
36    testImplementation "com.google.truth:truth:0.44"
37    testImplementation "org.mockito:mockito-core:2.5.4"
38    testImplementation "androidx.arch.core:core-common:2.0.0-beta01"
39    testImplementation "androidx.arch.core:core-runtime:2.0.0-rc01"
40    testImplementation "androidx.collection:collection:1.0.0-rc01"
41    testImplementation "androidx.core:core:1.0.0-rc02"
42    testImplementation 'androidx.fragment:fragment:1.0.0-rc02'
43    testImplementation "androidx.lifecycle:lifecycle-viewmodel:2.0.0-rc01"
44    testImplementation "androidx.lifecycle:lifecycle-common:2.0.0-beta01"
45    testImplementation "androidx.lifecycle:lifecycle-runtime:2.0.0-rc01"
46    testImplementation "androidx.lifecycle:lifecycle-livedata-core:2.0.0-rc01"
47    testImplementation "androidx.loader:loader:1.0.0-rc02"
48}
49