aboutsummaryrefslogtreecommitdiff
path: root/gridlayout/build.gradle
blob: c1ba36933395d8db8f5b5923d543a4513ada93ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions

plugins {
    id("SupportAndroidLibraryPlugin")
}

dependencies {
    api(project(":core"))

    androidTestImplementation(TEST_RUNNER)
    androidTestImplementation(TEST_RULES)
    androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
}

supportLibrary {
    name = "Android Support Grid Layout"
    publish = true
    mavenVersion = LibraryVersions.GRIDLAYOUT
    mavenGroup = LibraryGroups.GRIDLAYOUT
    inceptionYear = "2013"
    description = "Android Support Grid Layout"
    failOnDeprecationWarnings = false
}