summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-11-06 18:47:13 +0100
committerByteHamster <info@bytehamster.com>2019-11-06 18:47:13 +0100
commita6624a9d05499dded541e22422cc94b3b662873b (patch)
treede27a6cb18d457fbaea1e9b77f531c85c5bdcd88 /core
parent9df14af284bbaf719c21657c66a75478a874194e (diff)
downloadAntennaPod-a6624a9d05499dded541e22422cc94b3b662873b.zip
Moved robotium dependency to test flavour
Diffstat (limited to 'core')
-rw-r--r--core/build.gradle3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/build.gradle b/core/build.gradle
index fe6ed824a..b7b109396 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -64,7 +64,6 @@ dependencies {
implementation "org.apache.commons:commons-lang3:$commonslangVersion"
implementation "org.apache.commons:commons-text:$commonstextVersion"
implementation "commons-io:commons-io:$commonsioVersion"
- implementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
implementation "org.jsoup:jsoup:$jsoupVersion"
implementation "com.github.bumptech.glide:glide:$glideVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideVersion"
@@ -94,10 +93,10 @@ dependencies {
testImplementation "org.awaitility:awaitility:$awaitilityVersion"
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:1.10.19'
+ androidTestImplementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion"
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test:rules:1.2.0'
-
}
tasks.withType(Test) {