blob: 1c92e1e1e444a30f8c2899e86f5663487f9a3213 [file] [log] [blame]
Ryan Mentley96f50772021-10-29 22:12:37 -07001/*
2 * Copyright (C) 2021 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 Songee0da742024-01-03 14:08:46 -080017/**
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 */
Ryan Mentley96f50772021-10-29 22:12:37 -070024import androidx.build.LibraryType
25
26plugins {
27 id("AndroidXPlugin")
28 id("com.android.library")
29 id("org.jetbrains.kotlin.android")
30}
31
32dependencies {
33 implementation(libs.kotlinStdlib)
34 implementation("androidx.core:core-ktx:1.5.0")
35
36 androidTestImplementation(libs.testExtJunit)
37 androidTestImplementation(libs.testExtJunitKtx)
38 androidTestImplementation(libs.testCore)
39 androidTestImplementation(libs.testRunner)
40 androidTestImplementation(libs.testRules)
41 androidTestImplementation(libs.truth)
42 androidTestImplementation(libs.testExtTruth)
43}
44
45androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040046 name = "CustomView Pooling Container"
Ryan Mentley96f50772021-10-29 22:12:37 -070047 type = LibraryType.PUBLISHED_LIBRARY
Ryan Mentley96f50772021-10-29 22:12:37 -070048 mavenVersion = LibraryVersions.CUSTOMVIEW_POOLINGCONTAINER
49 inceptionYear = "2021"
50 description = "Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView"
Aurimas Liutikas5c5419a2024-05-29 15:26:58 -070051 legacyDisableKotlinStrictApiMode = true
Ryan Mentley96f50772021-10-29 22:12:37 -070052}
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070053
54android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080055 namespace = "androidx.customview.poolingcontainer"
Aurimas Liutikasdcfa0352022-03-14 16:05:33 -070056}