| /** |
| * This file was created using the `create_project.py` script located in the |
| * `<AndroidX root>/development/project-creator` directory. |
| * |
| * Please use that script when creating a new project, rather than copying an existing project and |
| * modifying its settings. |
| */ |
| import androidx.build.LibraryType |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("kotlin-android") |
| } |
| |
| dependencies { |
| api("androidx.annotation:annotation:1.8.1") |
| api("androidx.core:core:1.13.0") |
| implementation("androidx.collection:collection:1.4.2") |
| api("androidx.customview:customview:1.0.0") |
| implementation("androidx.customview:customview-poolingcontainer:1.0.0") |
| implementation("androidx.profileinstaller:profileinstaller:1.4.0") |
| |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.espressoCore) |
| androidTestImplementation(libs.mockitoCore) |
| androidTestImplementation(libs.dexmakerMockito) |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(libs.junit) |
| androidTestImplementation(libs.kotlinStdlib) |
| androidTestImplementation(project(":internal-testutils-espresso")) |
| androidTestImplementation(project(":internal-testutils-runtime")) |
| androidTestImplementation(project(":internal-testutils-common")) |
| androidTestImplementation(libs.kotlinCoroutinesAndroid) |
| |
| testImplementation(libs.junit) |
| testImplementation(libs.mockitoCore4) |
| testImplementation(libs.kotlinStdlib) |
| lintPublish(project(":recyclerview:recyclerview-lint")) |
| |
| constraints { |
| implementation("androidx.viewpager2:viewpager2:1.1.0") |
| } |
| } |
| |
| android { |
| sourceSets { |
| main.res.srcDirs "res", "res-public" |
| } |
| |
| buildTypes.configureEach { |
| consumerProguardFiles("proguard-rules.pro") |
| } |
| |
| defaultConfig { |
| compileSdk = 35 |
| testInstrumentationRunner "androidx.recyclerview.test.TestRunner" |
| } |
| namespace "androidx.recyclerview" |
| } |
| |
| androidx { |
| name = "RecyclerView" |
| type = LibraryType.PUBLISHED_LIBRARY |
| mavenVersion = LibraryVersions.RECYCLERVIEW |
| inceptionYear = "2014" |
| description = "Android Support RecyclerView" |
| failOnDeprecationWarnings = false |
| } |