14 lines
377 B
Groovy
14 lines
377 B
Groovy
description = 'Conscrypt: Android-Stub'
|
|
|
|
// Needs to be binary-compatible with Android minSdkVersion.
|
|
sourceCompatibility = androidMinJavaVersion
|
|
targetCompatibility = androidMinJavaVersion
|
|
|
|
dependencies {
|
|
compile project(':conscrypt-libcore-stub')
|
|
}
|
|
|
|
// Don't include this artifact in the distribution.
|
|
tasks.install.enabled = false
|
|
tasks.uploadArchives.enabled = false;
|
|
|