xref: /aosp_15_r20/external/volley/core/build.gradle (revision a494ed5db247d14ea5602de4a744bb4a531fd3a7)
1*a494ed5dSAndroid Build Coastguard Workerandroid {
2*a494ed5dSAndroid Build Coastguard Worker    defaultConfig {
3*a494ed5dSAndroid Build Coastguard Worker        consumerProguardFiles 'consumer-proguard-rules.pro'
4*a494ed5dSAndroid Build Coastguard Worker    }
5*a494ed5dSAndroid Build Coastguard Worker}
6*a494ed5dSAndroid Build Coastguard Worker
7*a494ed5dSAndroid Build Coastguard Workerdependencies {
8*a494ed5dSAndroid Build Coastguard Worker    implementation "androidx.annotation:annotation:1.0.1"
9*a494ed5dSAndroid Build Coastguard Worker
10*a494ed5dSAndroid Build Coastguard Worker    testImplementation project(":testing")
11*a494ed5dSAndroid Build Coastguard Worker    testImplementation "junit:junit:4.12"
12*a494ed5dSAndroid Build Coastguard Worker    testImplementation "org.hamcrest:hamcrest-library:1.3"
13*a494ed5dSAndroid Build Coastguard Worker    testImplementation "org.mockito:mockito-core:2.19.0"
14*a494ed5dSAndroid Build Coastguard Worker    testImplementation "org.robolectric:robolectric:3.4.2"
15*a494ed5dSAndroid Build Coastguard Worker}
16*a494ed5dSAndroid Build Coastguard Worker
17*a494ed5dSAndroid Build Coastguard Workerpublishing {
18*a494ed5dSAndroid Build Coastguard Worker    publications {
19*a494ed5dSAndroid Build Coastguard Worker        library(MavenPublication) {
20*a494ed5dSAndroid Build Coastguard Worker            artifactId 'volley'
21*a494ed5dSAndroid Build Coastguard Worker            pom {
22*a494ed5dSAndroid Build Coastguard Worker                name = 'Volley'
23*a494ed5dSAndroid Build Coastguard Worker                description = 'An HTTP library that makes networking for Android apps easier and, most importantly, faster.'
24*a494ed5dSAndroid Build Coastguard Worker            }
25*a494ed5dSAndroid Build Coastguard Worker            artifact "$buildDir/outputs/aar/core-release.aar"
26*a494ed5dSAndroid Build Coastguard Worker        }
27*a494ed5dSAndroid Build Coastguard Worker    }
28*a494ed5dSAndroid Build Coastguard Worker}
29