From b1a041a79273b61b10fffdff646db7ad8639099f Mon Sep 17 00:00:00 2001 From: Erwan Croze Date: Tue, 29 Aug 2017 16:50:11 +0200 Subject: [PATCH] Fixing gradle.build of tester --- gradle/wrapper/gradle-wrapper.properties | 4 ++-- liblinphone_tester/build.gradle | 16 +++++++++------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c8438ef9a..4348bf926 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Tue Aug 29 15:59:08 CEST 2017 +#Tue Aug 29 16:02:50 CEST 2017 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME 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 diff --git a/liblinphone_tester/build.gradle b/liblinphone_tester/build.gradle index 8403f092e..856d366f1 100644 --- a/liblinphone_tester/build.gradle +++ b/liblinphone_tester/build.gradle @@ -10,9 +10,10 @@ buildscript { jcenter() mavenCentral() mavenLocal() + google() } 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() mavenCentral() mavenLocal() + google() } } apply plugin: 'com.android.application' dependencies { - androidTestCompile group: 'org.apache.commons', name: 'commons-compress', version: '1.14' - androidTestCompile group: 'junit', name: 'junit', version: '4.12' - androidTestCompile group: 'com.jayway.android.robotium', name: 'robotium', version: '5.6.3' + androidTestCompile group: 'org.apache.commons', name: 'commons-compress', version: '+' + androidTestCompile group: 'junit', name: 'junit', version: '+' + androidTestCompile group: 'com.jayway.android.robotium', name: 'robotium', version: '+' androidTestCompile fileTree(dir: 'libs', include: 'android-junit-report*.jar') - compile group: 'org.apache.commons', name: 'commons-compress', version: '1.14' - compile group: 'junit', name: 'junit', version: '4.12' - compile group: 'com.jayway.android.robotium', name: 'robotium-solo', version: '5.6.3' + compile group: 'org.apache.commons', name: 'commons-compress', version: '+' + compile group: 'junit', name: 'junit', version: '+' + compile group: 'com.jayway.android.robotium', name: 'robotium-solo', version: '+' compile fileTree(dir: 'libs', include: 'android-junit-report*.jar') compile project(":libLinphoneAndroidSdk") }