mirror of
https://github.com/nextcloud/android.git
synced 2024-11-25 06:35:48 +03:00
Added dependencies for local unit tests to app build.gradle file
This commit is contained in:
parent
c1f616ce54
commit
964560da8f
1 changed files with 5 additions and 0 deletions
|
@ -29,6 +29,7 @@ repositories {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
/// dependencies for app building
|
||||||
compile name: 'touch-image-view'
|
compile name: 'touch-image-view'
|
||||||
compile project(':owncloud-android-library')
|
compile project(':owncloud-android-library')
|
||||||
compile "com.android.support:support-v4:${supportLibraryVersion}"
|
compile "com.android.support:support-v4:${supportLibraryVersion}"
|
||||||
|
@ -36,6 +37,10 @@ dependencies {
|
||||||
compile 'com.jakewharton:disklrucache:2.0.2'
|
compile 'com.jakewharton:disklrucache:2.0.2'
|
||||||
compile "com.android.support:appcompat-v7:${supportLibraryVersion}"
|
compile "com.android.support:appcompat-v7:${supportLibraryVersion}"
|
||||||
compile 'com.getbase:floatingactionbutton:1.10.1'
|
compile 'com.getbase:floatingactionbutton:1.10.1'
|
||||||
|
|
||||||
|
/// dependencies for local unit tests
|
||||||
|
testCompile 'junit:junit:4.12'
|
||||||
|
testCompile 'org.mockito:mockito-core:1.10.19'
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
|
|
Loading…
Reference in a new issue