From 42cffa2e80012dd00174b5750bd9c5f6a47cfccb Mon Sep 17 00:00:00 2001 From: Ivan Shafran Date: Sat, 29 Jun 2019 22:41:40 +0300 Subject: [PATCH] Add to sample dependency on remote --- build.gradle | 3 ++- sample/build.gradle | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 220132e..2718f1f 100644 --- a/build.gradle +++ b/build.gradle @@ -21,7 +21,8 @@ allprojects { repositories { google() jcenter() - + maven { url 'https://jitpack.io' } + } } diff --git a/sample/build.gradle b/sample/build.gradle index 84f1721..7a23d5f 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -22,7 +22,7 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' - testImplementation project(':sharedpreferencesmock') + testImplementation 'com.github.IvanShafran:shared-preferences-mock:v1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'