| Cătălin Tudor | 4e4a7ff | 2019-05-31 17:00:39 +0100 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | import static androidx.build.dependencies.DependenciesKt.* |
| 18 | import androidx.build.LibraryGroups |
| 19 | import androidx.build.LibraryVersions |
| 20 | |
| 21 | plugins { |
| 22 | id("AndroidXPlugin") |
| 23 | id("com.android.library") |
| 24 | id("kotlin-android") |
| 25 | } |
| 26 | |
| 27 | dependencies { |
| Cătălin Tudor | 704a0db | 2019-07-16 16:14:06 +0100 | [diff] [blame] | 28 | implementation(ANDROIDX_TEST_RUNNER) |
| 29 | |
| Cătălin Tudor | 4e4a7ff | 2019-05-31 17:00:39 +0100 | [diff] [blame] | 30 | androidTestImplementation(JUNIT) |
| 31 | androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| 32 | androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| 33 | androidTestImplementation(KOTLIN_STDLIB) |
| 34 | } |
| 35 | |
| 36 | androidx { |
| 37 | name = "AndroidX Library Screenshot Test" |
| 38 | mavenVersion = LibraryVersions.TEST_SCREENSHOT |
| 39 | mavenGroup = LibraryGroups.TESTSCREENSHOT |
| 40 | } |