mirror of
https://github.com/zhigang1992/AndroidVideoCache.git
synced 2026-01-30 16:49:00 +08:00
23 lines
450 B
Groovy
23 lines
450 B
Groovy
repositories {
|
|
maven { url 'https://github.com/danikula/AndroidVideoCache/raw/mvn-repo' }
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 22
|
|
buildToolsVersion '22.0.1'
|
|
|
|
defaultConfig {
|
|
applicationId "com.danikula.videocache.sample"
|
|
minSdkVersion 15
|
|
targetSdkVersion 22
|
|
versionCode 1
|
|
versionName '1.0'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile('com.danikula:videocache:1.0')
|
|
}
|