Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 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 | |
Tiem Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 17 | /** |
| 18 | * This file was created using the `create_project.py` script located in the |
| 19 | * `<AndroidX root>/development/project-creator` directory. |
| 20 | * |
| 21 | * Please use that script when creating a new project, rather than copying an existing project and |
| 22 | * modifying its settings. |
| 23 | */ |
omarismail | 6700b61 | 2024-02-19 14:28:20 +0000 | [diff] [blame] | 24 | import androidx.build.LibraryType |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 25 | |
| 26 | plugins { |
Aurimas Liutikas | cdb9f9f | 2019-04-08 12:07:49 +0100 | [diff] [blame] | 27 | id("AndroidXPlugin") |
| 28 | id("com.android.library") |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 29 | id("org.jetbrains.kotlin.android") |
| 30 | } |
| 31 | |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 32 | dependencies { |
Aurimas Liutikas | 0044296 | 2021-06-01 17:18:09 -0700 | [diff] [blame] | 33 | api(libs.kotlinStdlib) |
Sergey | 877b6ec | 2019-12-18 16:42:44 +0400 | [diff] [blame] | 34 | api(project(":dynamicanimation:dynamicanimation")) |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 35 | |
Aurimas Liutikas | 0044296 | 2021-06-01 17:18:09 -0700 | [diff] [blame] | 36 | androidTestImplementation(libs.testExtJunit) |
| 37 | androidTestImplementation(libs.testCore) |
| 38 | androidTestImplementation(libs.testRunner) |
| 39 | androidTestImplementation(libs.testRules) |
Doris Liu | 21e165d | 2019-03-06 13:07:20 -0800 | [diff] [blame] | 40 | |
Aurimas Liutikas | 08f94ae | 2024-09-19 21:40:37 -0700 | [diff] [blame] | 41 | androidTestImplementation(libs.espressoCore) |
Aurimas Liutikas | 1a31ba6 | 2024-08-30 12:49:00 -0700 | [diff] [blame] | 42 | androidTestImplementation(libs.mockitoCore) |
| 43 | androidTestImplementation(libs.dexmakerMockito) |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 44 | } |
| 45 | |
Aurimas Liutikas | 2ad3161 | 2019-04-01 04:23:03 -0700 | [diff] [blame] | 46 | androidx { |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 47 | name = "Dynamic animation Kotlin Extensions" |
Omar Ismail | 8ff41a1 | 2024-04-24 11:29:28 +0100 | [diff] [blame] | 48 | type = LibraryType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 49 | mavenVersion = LibraryVersions.DYNAMICANIMATION_KTX |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 50 | inceptionYear = "2018" |
| 51 | description = "Kotlin extensions for 'dynamicanimation' artifact" |
Aurimas Liutikas | 5c5419a | 2024-05-29 15:26:58 -0700 | [diff] [blame] | 52 | legacyDisableKotlinStrictApiMode = true |
Sagar Viradiya | ee1aad3 | 2018-10-09 16:35:17 +0530 | [diff] [blame] | 53 | } |
Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 54 | |
| 55 | android { |
Aurimas Liutikas | 7795282 | 2024-12-04 18:00:17 -0800 | [diff] [blame] | 56 | namespace = "androidx.dynamicanimation.ktx" |
Aurimas Liutikas | dcfa035 | 2022-03-14 16:05:33 -0700 | [diff] [blame] | 57 | } |