blob: 9854c642be1c0e7fc78236066661904cb6652aac [file] [log] [blame]
apply plugin: 'com.android.library'
apply from: 'gradle-maven-push.gradle'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
resourcePrefix 'lottie_'
defaultConfig {
minSdkVersion 14
targetSdkVersion 26
}
lintOptions {
abortOnError true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile "com.android.support:appcompat-v7:$supportLibVersion"
testCompile 'junit:junit:4.12'
testCompile "org.robolectric:robolectric:3.3.2"
}
task javadoc(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator))
failOnError false
}