aboutsummaryrefslogtreecommitdiff
path: root/browser/build.gradle
blob: f4e75076965a0c2caa214316761f56fd53f69f1d (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish

plugins {
    id("AndroidXPlugin")
    id("com.android.library")
}

android {
    defaultConfig {
        minSdkVersion 16
    }
}

dependencies {
    api(project(":core"))
    api("androidx.annotation:annotation:1.1.0-rc01")
    api(project(":interpolator"))
    api("androidx.collection:collection:1.1.0-rc01")

    implementation(project(":concurrent-listenablefuture"))
    implementation(project(":concurrent-listenablefuture-callback"))

    androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
    androidTestImplementation(ANDROIDX_TEST_CORE)
    androidTestImplementation(ANDROIDX_TEST_RUNNER)
    androidTestImplementation(ANDROIDX_TEST_RULES)
    androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
    androidTestImplementation(project(":internal-testutils"))
}

androidx {
    name = "Android Support Custom Tabs"
    publish = Publish.SNAPSHOT_AND_RELEASE
    mavenVersion = LibraryVersions.BROWSER
    mavenGroup = LibraryGroups.BROWSER
    inceptionYear = "2015"
    description = "Android Support Custom Tabs"
}