diff options
author | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-06-09 06:34:09 +0000 |
---|---|---|
committer | Guillaume Jacquart <guillaume.jacquart@hoodbrains.com> | 2023-06-09 06:34:09 +0000 |
commit | 74b9860784913c097ae59e58b0958da7744ebc2e (patch) | |
tree | 29f4f655f6ac71a0da40bc50d332db3c2c75f634 /app/build.gradle | |
parent | 045261f84c1ac5ba4c8ed0f3dabd4ea53a1155c9 (diff) |
1227: use navigation graph component, avoid view (fragments) duplications
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index e6d0c2a..8a9f1fd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,4 +1,5 @@ /* + * Copyright (C) 2023 MURENA SAS * Copyright (C) 2022 E FOUNDATION * * This program is free software: you can redistribute it and/or modify @@ -19,6 +20,7 @@ plugins { id 'com.android.application' id 'kotlin-android' id 'kotlin-kapt' + id 'androidx.navigation.safeargs.kotlin' } def getSentryDsn = { -> @@ -162,6 +164,9 @@ dependencies { Libs.AndroidX.work, Libs.material, + Libs.AndroidX.navigation.fragmentKtx, + Libs.AndroidX.navigation.uiKtx, + Libs.Retrofit.retrofit, Libs.Retrofit.scalars, |