blob: b82478e4eedd3cff3a5f893326cc47aebcc64b6d [file] [log] [blame]
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +01001/*
2 * Copyright 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17import static androidx.build.dependencies.DependenciesKt.*
18import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
20
21plugins {
22 id("AndroidXPlugin")
23 id("com.android.library")
24 id("kotlin-android")
25}
26
27dependencies {
Cătălin Tudor9188ab32019-05-08 16:01:05 +010028 implementation "androidx.annotation:annotation:1.0.0"
29 implementation "androidx.test.screenshot:screenshot-proto:1.0.0-alpha01"
30
31 implementation(KOTLIN_STDLIB)
32 implementation(JUNIT)
33 implementation(ANDROIDX_TEST_RULES)
Cătălin Tudor704a0db2019-07-16 16:14:06 +010034 implementation(ANDROIDX_TEST_RUNNER)
35
Cătălin Tudor9188ab32019-05-08 16:01:05 +010036 androidTestImplementation(TRUTH)
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010037 androidTestImplementation(JUNIT)
38 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
39 androidTestImplementation(ANDROIDX_TEST_RUNNER)
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010040}
41
42androidx {
43 name = "AndroidX Library Screenshot Test"
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010044 mavenGroup = LibraryGroups.TESTSCREENSHOT
45}
Filip Pavlis1428feb2020-03-23 16:28:07 +000046
47android {
48 defaultConfig {
49 testInstrumentationRunnerArgument("thisisignored", "thisisignored --no-isolated-storage")
50 }
51}