From: Damyan Ivanov Date: Sat, 20 Jul 2019 18:47:54 +0000 (+0300) Subject: add navigation libraries to gradle dependencies X-Git-Tag: v0.11.0~113 X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=commitdiff_plain;h=2c65e8e2f8e976b459095f65e961ad384ac36d03 add navigation libraries to gradle dependencies not really used for now, but may be in the future --- 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" }