blob: f0ba3cc91301c90ba67e07e01dfd19ef0c9e9a46 [file] [log] [blame]
Yigit Boyarbe6fc8b2018-08-15 17:00:31 -07001/*
2 * Copyright (C) 2018 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.*
18
19plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010020 id("AndroidXPlugin")
21 id("com.android.library")
Yigit Boyarbe6fc8b2018-08-15 17:00:31 -070022}
23
24dependencies {
25 testImplementation(JUNIT)
Dustin Lam3979d962019-04-08 10:40:19 -070026 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
27 androidTestImplementation(ANDROIDX_TEST_CORE)
28 androidTestImplementation(ANDROIDX_TEST_RUNNER)
29 androidTestImplementation(ANDROIDX_TEST_RULES)
Yigit Boyarbe6fc8b2018-08-15 17:00:31 -070030}
31
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070032androidx {
Yigit Boyarbe6fc8b2018-08-15 17:00:31 -070033 name = "Dummy Project for test runner"
Yigit Boyarbe6fc8b2018-08-15 17:00:31 -070034}