[go: nahoru, domu]

blob: 5ba82266457bf5d00be37b11576c7f335831d7ac [file] [log] [blame]
Alan Viverette327e00c2021-08-18 13:02:07 -04001import androidx.build.LibraryType
Jeff Gastonaea149f2020-04-03 16:35:15 -04002import androidx.build.Publish
3
4plugins {
5 id("AndroidXPlugin")
6 id("com.android.library")
7}
8
9androidx {
10 name = "Sample Library"
11 publish = Publish.SNAPSHOT_AND_RELEASE
12 mavenGroup = LibraryGroups.BUILDSRC_TESTS
Alan Viverette327e00c2021-08-18 13:02:07 -040013 type = LibraryType.SAMPLES
Jeff Gastonaea149f2020-04-03 16:35:15 -040014 inceptionYear = "2020"
15 description = "This is a sample library for confirming that maxDepVersions builds work correctly"
16}