1android { 2 defaultConfig { 3 consumerProguardFiles 'consumer-proguard-rules.pro' 4 } 5} 6 7dependencies { 8 compileOnly "androidx.annotation:annotation:1.0.1" 9 10 testImplementation project(":testing") 11 testImplementation "junit:junit:4.12" 12 testImplementation "org.hamcrest:hamcrest-library:1.3" 13 testImplementation "org.mockito:mockito-core:2.19.0" 14 testImplementation "org.robolectric:robolectric:4.8.2" 15 // TODO(#424): Fix this dependency at the library level. 16 testImplementation "androidx.annotation:annotation:1.0.1" 17} 18 19project.ext.artifactId = 'volley' 20project.ext.pomName = 'Volley' 21project.ext.pomDescription = 'An HTTP library that makes networking for Android apps easier and, most importantly, faster.' 22