aboutsummaryrefslogtreecommitdiff
path: root/cronet/build.gradle
blob: 5ee53d6d1eb053f3e6f10db44cd7ccb458bba9ea (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
dependencies {
    implementation project(":core")
    implementation "androidx.annotation:annotation:1.0.1"
    compileOnly "org.chromium.net:cronet-embedded:76.3809.111"

    testImplementation project(":testing")
    testImplementation "org.chromium.net:cronet-embedded:76.3809.111"
    testImplementation "junit:junit:4.12"
    testImplementation "org.mockito:mockito-core:2.19.0"
    testImplementation "org.robolectric:robolectric:3.4.2"
}

publishing {
    publications {
        library(MavenPublication) {
            artifactId 'volley-cronet'
            pom {
                name = 'Volley Cronet'
                description = 'Cronet support for Volley.'
            }
            artifact "$buildDir/outputs/aar/cronet-release.aar"
        }
    }
}