blob: 1d1800e4cc642ac069a20bde581f2ed4eed38747 [file] [log] [blame]
Doris Liu7b0675e2018-08-13 14:13:08 -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.*
18import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070020import androidx.build.Publish
Doris Liu7b0675e2018-08-13 14:13:08 -070021
22plugins {
Aurimas Liutikascdb9f9f2019-04-08 12:07:49 +010023 id("AndroidXPlugin")
24 id("com.android.library")
Doris Liu7b0675e2018-08-13 14:13:08 -070025}
26
27dependencies {
Nick Anthonyac4cf062019-06-04 10:59:29 -040028 implementation("androidx.annotation:annotation:1.1.0")
Nick Anthonyf9dabf92019-08-16 10:38:30 -040029 implementation("androidx.core:core:1.1.0")
Nick Anthony692b3e952019-06-04 11:25:56 -040030 implementation("androidx.collection:collection:1.1.0")
Doris Liu7b0675e2018-08-13 14:13:08 -070031
Dustin Lam3979d962019-04-08 10:40:19 -070032 androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT, libs.exclude_for_espresso)
33 androidTestImplementation(ANDROIDX_TEST_RULES, libs.exclude_for_espresso)
Doris Liu7b0675e2018-08-13 14:13:08 -070034}
35
Aurimas Liutikas2ad31612019-04-01 04:23:03 -070036androidx {
Doris Liu7b0675e2018-08-13 14:13:08 -070037 name = "Android Support Animation"
Aurimas Liutikas75e93a02019-05-28 16:31:38 -070038 publish = Publish.NONE
Sergey Vasilinets37149ca2018-08-29 23:31:03 -070039 mavenVersion = LibraryVersions.ANIMATION
Doris Liu7b0675e2018-08-13 14:13:08 -070040 mavenGroup = LibraryGroups.ANIMATION
41 inceptionYear = "2018"
42 description = "This library provides functionalities for creating and manipulating animations for API 14 and above."
43}