blob: 37064ef6a19e9e7b2507f447da76fc426ddd2194 [file] [log] [blame]
Rahul Ravikumar95a5d632020-02-12 16:21:49 -08001/*
2 * Copyright 2020 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 */
Owen Gray74cc2592020-09-24 15:05:40 -040024import androidx.build.LibraryType
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080025
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080026plugins {
27 id("AndroidXPlugin")
28 id("kotlin")
29}
30
31dependencies {
Tiem Song94247522021-07-07 20:48:01 +000032 compileOnly(libs.androidLintMinApi)
Aurimas Liutikasca27c5a2021-05-24 16:32:59 -070033 compileOnly(libs.kotlinStdlib)
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080034
Aurimas Liutikasca27c5a2021-05-24 16:32:59 -070035 testImplementation(libs.kotlinStdlib)
36 testImplementation(libs.androidLint)
37 testImplementation(libs.androidLintTests)
38 testImplementation(libs.junit)
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080039}
40
41androidx {
42 name = "RecyclerView Lint Checks"
Owen Gray74cc2592020-09-24 15:05:40 -040043 type = LibraryType.LINT
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080044 inceptionYear = "2020"
45 description = "RecyclerView Lint Checks"
Rahul Ravikumar95a5d632020-02-12 16:21:49 -080046}