blob: 2b3a7569a0c33d7e8bce03c8667ba9a3f03d0764 [file] [log] [blame]
/*
* Copyright 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import static androidx.build.dependencies.DependenciesKt.ARCH_LIFECYCLE_EXTENSIONS
import static androidx.build.dependencies.DependenciesKt.ESPRESSO_CORE
import static androidx.build.dependencies.DependenciesKt.KOTLIN_STDLIB
import static androidx.build.dependencies.DependenciesKt.SUPPORT_DESIGN
import static androidx.build.dependencies.DependenciesKt.TEST_EXT_JUNIT
import static androidx.build.dependencies.DependenciesKt.TEST_RULES
plugins {
id("AndroidXPlugin")
id("com.android.application")
id("org.jetbrains.kotlin.android")
id('kotlin-android-extensions')
}
dependencies {
api(KOTLIN_STDLIB)
implementation(project(":viewpager2"))
implementation(ARCH_LIFECYCLE_EXTENSIONS)
implementation(SUPPORT_DESIGN)
implementation(project(":cardview"))
androidTestImplementation(TEST_RULES)
androidTestImplementation(TEST_EXT_JUNIT)
androidTestImplementation(ESPRESSO_CORE)
}