From 4dd7c2bf6dfbf114a297249264795816598c88dd Mon Sep 17 00:00:00 2001 From: Rosty Date: Fri, 6 Jan 2017 17:33:05 +0200 Subject: [PATCH] taptargetview dependencies added --- OsmAnd/build.gradle | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle index 06846c51bc..acfb978610 100644 --- a/OsmAnd/build.gradle +++ b/OsmAnd/build.gradle @@ -350,6 +350,7 @@ repositories { artifact "ivy/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]" } } + jcenter() // mavenCentral() } @@ -357,27 +358,27 @@ def analytics = (System.getenv("APP_FEATURES") && System.getenv("APP_FEATURES"). System.getenv("PACKAGE_TO_BUILT").equals("net.osmand") ) || System.getenv("USE_FIREBASE") dependencies { compile project(path: ':OsmAnd-java', configuration: 'android') - - if(analytics) { - compile 'com.google.firebase:firebase-core:9.8.0' - compile 'com.google.firebase:firebase-config:9.8.0' - + if (analytics) { + compile 'com.google.firebase:firebase-core:9.8.0' + compile 'com.google.firebase:firebase-config:9.8.0' + } - - // compile project(':eclipse-compile:design') // compile project(':eclipse-compile:cardview') // compile project(':eclipse-compile:gridlayout') compile 'com.android.support:gridlayout-v7:23.3.0' compile 'com.android.support:cardview-v7:23.3.0' compile 'com.android.support:appcompat-v7:23.3.0' - compile 'com.android.support:design:23.3.0' + compile 'com.android.support:design:23.3.0' compile fileTree(include: ['*.jar'], exclude: ['QtAndroid-bundled.jar', 'QtAndroidAccessibility-bundled.jar', 'OsmAndCore_android.jar', 'OsmAndCore_wrapper.jar', 'android-support-multidex.jar'], dir: 'libs') legacyCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@jar" qtcoredebugCompile "net.osmand:OsmAndCore_androidNativeDebug:0.1-SNAPSHOT@aar" qtcoredebugCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar" qtcoreCompile "net.osmand:OsmAndCore_androidNativeRelease:0.1-SNAPSHOT@aar" qtcoreCompile "net.osmand:OsmAndCore_android:0.1-SNAPSHOT@aar" + compile ("com.getkeepsafe.taptargetview:taptargetview:1.6.1"){ + exclude group: 'com.android.support' + } } if(analytics) { println "Apply GMS plugin"