[go: nahoru, domu]

blob: 36ee1909df370e22bde9b184f2371099edd67c1f [file] [log] [blame]
Rahul Ravikumar10a01892020-01-10 18:23:17 -08001/*
2 * Copyright (C) 2020 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
Rahul Ravikumar10a01892020-01-10 18:23:17 -080017import static androidx.build.dependencies.DependenciesKt.*
Rahul Ravikumar10a01892020-01-10 18:23:17 -080018
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22 id("kotlin-android")
23}
24
25project.ext.noDocs = true
26
Rahul Ravikumar10a01892020-01-10 18:23:17 -080027dependencies {
28 api(KOTLIN_STDLIB)
29 implementation(project(":startup:startup-runtime"))
30 implementation(project(":startup:integration-tests:first-library"))
31 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
32 androidTestImplementation(ANDROIDX_TEST_CORE)
33 androidTestImplementation(ANDROIDX_TEST_RUNNER)
34 androidTestImplementation(ESPRESSO_CORE)
35 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has its own MockMaker
36 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has its own MockMaker
37 testImplementation(JUNIT)
38}