import androidx.build.LibraryType | |
import androidx.build.Publish | |
plugins { | |
id("AndroidXPlugin") | |
id("com.android.library") | |
} | |
android { | |
namespace "androidx.buildSrc.tests.lib" | |
} | |
androidx { | |
name = "Sample Library" | |
publish = Publish.SNAPSHOT_AND_RELEASE | |
type = LibraryType.SAMPLES | |
inceptionYear = "2020" | |
description = "This is a sample library for confirming that maxDepVersions builds work correctly" | |
} |