Files
AndroidVideoCache/library/build.gradle
2016-09-27 22:29:29 +03:00

37 lines
720 B
Groovy

buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.novoda:bintray-release:0.3.4'
}
}
apply plugin: 'idea'
apply plugin: 'java'
apply plugin: 'bintray-release'
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
dependencies {
compile 'com.google.android:android:1.6_r2'
compile 'org.slf4j:slf4j-android:1.7.21'
}
publish {
userOrg = 'alexeydanilov'
groupId = 'com.danikula'
artifactId = 'videocache'
publishVersion = '2.6.3'
description = 'Cache support for android VideoView'
website = 'https://github.com/danikula/AndroidVideoCache'
}