mirror of
https://github.com/zhigang1992/AndroidVideoCache.git
synced 2026-01-30 16:49:00 +08:00
36 lines
939 B
Groovy
36 lines
939 B
Groovy
repositories {
|
|
maven { url 'https://dl.bintray.com/alexeydanilov/maven' }
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion '22.0.1'
|
|
|
|
defaultConfig {
|
|
applicationId 'com.danikula.proxycache.test'
|
|
minSdkVersion 16
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName '0.1'
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':library')
|
|
testCompile 'org.slf4j:slf4j-simple:1.7.21'
|
|
testCompile 'junit:junit:4.12'
|
|
testCompile 'org.robolectric:robolectric:3.1'
|
|
testCompile 'com.squareup:fest-android:1.0.0'
|
|
testCompile 'com.google.guava:guava-jdk5:17.0'
|
|
testCompile('com.danikula:android-garden:2.1.4') {
|
|
exclude group: 'com.google.android'
|
|
}
|
|
testCompile 'org.mockito:mockito-all:1.9.5'
|
|
}
|