diff --git a/build.gradle b/build.gradle index f4d3304..c2f3509 100644 --- a/build.gradle +++ b/build.gradle @@ -2,12 +2,13 @@ buildscript { - - repositories { google() jcenter() mavenCentral() + maven { url 'https://jitpack.io' } + maven { url 'https://bintray.com/rameshbhupathi/maven' } + maven { url "https://dl.bintray.com/thelasterstar/maven/" } } dependencies { classpath 'com.android.tools.build:gradle:3.1.3' @@ -21,11 +22,13 @@ buildscript { allprojects { repositories { - mavenCentral() google() jcenter() + mavenCentral() maven { url 'https://jitpack.io' } maven { url 'https://bintray.com/rameshbhupathi/maven' } + maven { url "https://dl.bintray.com/thelasterstar/maven/" } + } } diff --git a/todaystepcounterlib/build.gradle b/todaystepcounterlib/build.gradle index af7f3ed..445afaf 100644 --- a/todaystepcounterlib/build.gradle +++ b/todaystepcounterlib/build.gradle @@ -22,13 +22,13 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'com.android.support:appcompat-v7:26.1.0' - androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'com.android.support:appcompat-v7:26.1.0' + androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - testCompile 'junit:junit:4.12' - testCompile 'org.robolectric:robolectric:3.0-rc3' - testCompile 'org.mockito:mockito-core:1.+' - compile files('libs/microlog4android-1.0.0.jar') + testImplementation 'junit:junit:4.12' + testImplementation 'org.robolectric:robolectric:3.0-rc3' + testImplementation 'org.mockito:mockito-core:1.+' + implementation files('libs/microlog4android-1.0.0.jar') }