From 2c65e8e2f8e976b459095f65e961ad384ac36d03 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Sat, 20 Jul 2019 21:47:54 +0300 Subject: [PATCH] add navigation libraries to gradle dependencies not really used for now, but may be in the future --- app/build.gradle | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 0842e432..47b132c8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -48,6 +48,7 @@ android { } dependencies { + def nav_version = '2.1.0-alpha06' implementation fileTree(include: ['*.jar'], dir: 'libs') implementation 'androidx.appcompat:appcompat:1.1.0-rc01' implementation 'androidx.legacy:legacy-support-v4:1.0.0' @@ -60,4 +61,6 @@ dependencies { androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0-alpha01' implementation 'org.jetbrains:annotations:15.0' implementation 'com.fasterxml.jackson.module:jackson-modules-java8:2.9.8' + implementation "androidx.navigation:navigation-fragment:$nav_version" + implementation "androidx.navigation:navigation-ui:$nav_version" } -- 2.39.2