blob: 21e4e0af12276dd1d8a8ac9a8f12b8b82cc9c610 [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"
Siyamed Sinir9d2593c2020-06-03 10:18:11 -070029 implementation "androidx.core:core:1.5.0-alpha01"
Cătălin Tudor9188ab32019-05-08 16:01:05 +010030 implementation "androidx.test.screenshot:screenshot-proto:1.0.0-alpha01"
31
32 implementation(KOTLIN_STDLIB)
33 implementation(JUNIT)
34 implementation(ANDROIDX_TEST_RULES)
Cătălin Tudor704a0db2019-07-16 16:14:06 +010035 implementation(ANDROIDX_TEST_RUNNER)
36
Cătălin Tudor9188ab32019-05-08 16:01:05 +010037 androidTestImplementation(TRUTH)
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010038 androidTestImplementation(JUNIT)
39 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
40 androidTestImplementation(ANDROIDX_TEST_RUNNER)
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010041}
42
43androidx {
44 name = "AndroidX Library Screenshot Test"
Cătălin Tudor4e4a7ff2019-05-31 17:00:39 +010045 mavenGroup = LibraryGroups.TESTSCREENSHOT
Filip Pavlis1428feb2020-03-23 16:28:07 +000046}