blob: a740b0b77790fd855962e7d4d641d8c85d42c118 [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 Tudor704a0db2019-07-16 16:14:06 +010028 implementation(ANDROIDX_TEST_RUNNER)
29
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010030 androidTestImplementation(JUNIT)
31 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
32 androidTestImplementation(ANDROIDX_TEST_RUNNER)
33 androidTestImplementation(KOTLIN_STDLIB)
34}
35
36androidx {
37 name = "AndroidX Library Screenshot Test"
38 mavenVersion = LibraryVersions.TEST_SCREENSHOT
39 mavenGroup = LibraryGroups.TESTSCREENSHOT
40}