Fixing gradle.build of tester

This commit is contained in:
Erwan Croze 2017-08-29 16:50:11 +02:00
parent d4d6412bb4
commit b1a041a792
2 changed files with 11 additions and 9 deletions

View file

@ -1,6 +1,6 @@
#Tue Aug 29 15:59:08 CEST 2017 #Tue Aug 29 16:02:50 CEST 2017
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip

View file

@ -10,9 +10,10 @@ buildscript {
jcenter() jcenter()
mavenCentral() mavenCentral()
mavenLocal() mavenLocal()
google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha9' classpath 'com.android.tools.build:gradle:2.3.3'
} }
} }
@ -21,19 +22,20 @@ allprojects {
jcenter() jcenter()
mavenCentral() mavenCentral()
mavenLocal() mavenLocal()
google()
} }
} }
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
dependencies { dependencies {
androidTestCompile group: 'org.apache.commons', name: 'commons-compress', version: '1.14' androidTestCompile group: 'org.apache.commons', name: 'commons-compress', version: '+'
androidTestCompile group: 'junit', name: 'junit', version: '4.12' androidTestCompile group: 'junit', name: 'junit', version: '+'
androidTestCompile group: 'com.jayway.android.robotium', name: 'robotium', version: '5.6.3' androidTestCompile group: 'com.jayway.android.robotium', name: 'robotium', version: '+'
androidTestCompile fileTree(dir: 'libs', include: 'android-junit-report*.jar') androidTestCompile fileTree(dir: 'libs', include: 'android-junit-report*.jar')
compile group: 'org.apache.commons', name: 'commons-compress', version: '1.14' compile group: 'org.apache.commons', name: 'commons-compress', version: '+'
compile group: 'junit', name: 'junit', version: '4.12' compile group: 'junit', name: 'junit', version: '+'
compile group: 'com.jayway.android.robotium', name: 'robotium-solo', version: '5.6.3' compile group: 'com.jayway.android.robotium', name: 'robotium-solo', version: '+'
compile fileTree(dir: 'libs', include: 'android-junit-report*.jar') compile fileTree(dir: 'libs', include: 'android-junit-report*.jar')
compile project(":libLinphoneAndroidSdk") compile project(":libLinphoneAndroidSdk")
} }