| /** |
| * 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") |
| } |
| |
| dependencies { |
| implementation("androidx.buildSrc-tests-max-dep-versions-dep:buildSrc-tests-max-dep-versions-dep:1.0.0") |
| } |
| |
| android { |
| namespace = "androidx.testapp" |
| } |
| |
| androidx { |
| name = "Sample Dependent library" |
| type = LibraryType.SAMPLES |
| inceptionYear = "2020" |
| description = "This is a sample library for confirming that maxDepVersions builds work correctly" |
| } |