From a6d99ea5a6ea14b00d07a8002209e0c802231838 Mon Sep 17 00:00:00 2001 From: Fran Montiel Date: Thu, 15 Nov 2018 19:48:53 +0100 Subject: [PATCH] Changes on build.gradle --- build.gradle | 1 + sample/build.gradle | 14 ++++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index f3f7ec3..7b9f903 100644 --- a/build.gradle +++ b/build.gradle @@ -15,6 +15,7 @@ allprojects { repositories { jcenter() google() + maven { url 'https://jitpack.io' } } } diff --git a/sample/build.gradle b/sample/build.gradle index 20ed5a8..54ea635 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -20,12 +20,14 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { + implementation fileTree(include: ['*.jar'], dir: 'libs') + androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) - compile 'com.android.support:appcompat-v7:28.0.0' - compile 'com.android.support.constraint:constraint-layout:1.1.3' - testCompile 'junit:junit:4.12' - compile project(':library') + implementation 'com.android.support:appcompat-v7:28.0.0' + implementation 'com.android.support.constraint:constraint-layout:1.1.3' + testImplementation 'junit:junit:4.12' + implementation project(':library') +// implementation 'com.github.franmontiel:AttributionPresenter:1.0.1' + }