Тёмный

Modern Dependency Management With Version Catalogs - Android Studio Tutorial 💻 

Подписаться
Просмотров 30 тыс.
% 1 083

In this video I will show you an Android Studio Tutorial about Modern Dependency Management With Version Catalogs!
💻 Let me be your mentor and become an industry-ready Android developer in 10 weeks:
pl-coding.com/drop-table-mentoring?
⭐ Courses with real-life practices
⭐ Save countless hours of time
⭐ 100% money back guarantee for 30 days
⭐ Become a professional Android developer now:
pl-coding.com/premium-courses?
Get my FREE PDF about 20 things you should never do in Jetpack Compose:
pl-coding.com/jetpack-compose-mistakes?
Regular programming advice on my Instagram page: _philipplackner_
Join my Discord server:
discord.gg/cwQbmUstEu

Наука

Опубликовано:

 

25 фев 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 99   
@righteouscoder
@righteouscoder 4 месяца назад
So a tip I figured out by trial and error: My recommendation is to always add -"core" to to artifact ids like 'androidx.compose.ui:ui' that have a package name that will be part of other imports. That way auto complete plays nicely and it actually improves the wizard tooltip accuracy when you do that by allowing you to click "androidx.compose.ui.core" in your gradle files and it properly auto click through to the correct dependency. This works so nicely since Import Names and even Version Names don't have to 1:1 match the artifact IDs, and you can use "-base", or any other suffix you like to make it that auto-complete works nicely all the time, etc.
@johngray2875
@johngray2875 4 месяца назад
You can also have a bundles section, where you set up way add multiple dependencies will a single line. It's very handy for things you always use together. Like all the compose dependencies.
@vighnesh153
@vighnesh153 4 месяца назад
This is nice and definitely makes it easier to manage dependencies for large projects. When I look at build scripts that use version catalogs, I just find it a bit hard to build a mental model of dependencies. Before version catalogs, it was easier on the eyes to figure out what "groups" we are using in our application.
@tasnimulhasan7329
@tasnimulhasan7329 4 месяца назад
thanks for this video. this tutorial helped me a lot upgrading my gradle from to old and I now understand toml very well. thanks again bro
@riezkymaisyar4038
@riezkymaisyar4038 4 месяца назад
thanks philips, this is great 🤙
@eliasshemsu5853
@eliasshemsu5853 4 месяца назад
This is awesome, man!
@hassanjamil841
@hassanjamil841 4 месяца назад
Great video to know about the version catalog ❤
@robertfontaine3650
@robertfontaine3650 4 месяца назад
Nice to see this is being done. Sad that I did this all manually and now I have to unwind it. :)
@Otabek001uz
@Otabek001uz 4 месяца назад
You're the best, Native developer!!!
@swaminathbera6407
@swaminathbera6407 4 месяца назад
True
@friday7510
@friday7510 Месяц назад
yes, it's true!
@dahlola
@dahlola 4 месяца назад
Another nice feature is that you can create "bundles". So say that you have related dependencies like compose for instance, then you can create a bundle of these. You can then in you app gradle file just refer to "implementation(libs.bundles.compose)" for instance.
@v4lde3c0
@v4lde3c0 3 месяца назад
your videos are very top! Thank you so much for sharing your knowledge. 😍🤩🥳❤🙏
@ngenge_senior
@ngenge_senior 4 месяца назад
Thanks for this Philipp
@readysetgo4468
@readysetgo4468 2 месяца назад
this was helpful i was watching an old tutorial on app development that was released on 2021 and i was confused as to why my dependency lines were red while his was fine XD
@romanosp9349
@romanosp9349 3 месяца назад
Will you make a video combining versionCatalog with buildSrc ?
@abada-s
@abada-s 4 месяца назад
I hope to see a new video about buildSrc module that supports this toml file
@annaberkovitch85
@annaberkovitch85 Месяц назад
Ah! This is great. Been working on the same big project for a while, so when i created a new project in Jellyfish for a small app this morning and went to add dependencies, the first reaction seeing the libs system was "WTF!?". Was tempted to revert back, but the OCD had won 😂 After it had taken me the best part of the morning to figure out the version catalog system on my own and add all my drpendencies manually, decided to migrate my big project... for which this video was, as usual, A GODSEND! Seriously, you're a lifesaver ❤
@McMouse88
@McMouse88 3 месяца назад
It would be nice to mention about bundle in version catalog. And it would be pretty convenient if version catalog has opportunity to define groups like versions )))
@aditya_rajive
@aditya_rajive 4 месяца назад
Would be great if you could make a video on automating Gradle dependency updates through Github Actions.
@emreyigit7671
@emreyigit7671 2 месяца назад
Thank you philipp :)
@niharranjan3556
@niharranjan3556 3 месяца назад
Thanks Philipp for your great work ! I have seen gradle team has inculded this video link in their latest newsletter published for march, 2024. I have a question related to it though, appreciate if you can point me to something. With version catalog added to my project, I am not able to generate a gradle.lock file, and it always fails to identify the dependencies. There are multiple open bugs pending with gradle for the same and gradle team not showing the appetite to fix those as well.
@argahutama
@argahutama 4 месяца назад
How about Version Catalogue vs Gradle Kotlin DSL comparation?
@Narazgul
@Narazgul 4 месяца назад
In addition to your content I'm also making use of "bundles" there. For example all the compose dependencies could be bundle together and instead of 4 implementation you only got 1 left in your gradle file. But that's of course an indivuall preference 🙂
@PhilippLackner
@PhilippLackner 4 месяца назад
Haven't found much use for that yet, since in a single module app, you'll have to add them all to your Gradle file anyways and in a multi-module project, I got used to work with convention plugins which also didn't make me feel like that was necessary. Still thanks for adding though!
@mytubekt
@mytubekt 4 месяца назад
Bundles are very nice approach, we are also using to group dependencies and use them as single line in gradle file.
@rishabh-more
@rishabh-more 4 месяца назад
@@PhilippLackner I can't believe it. Bundles make my life soo much easier, even if I'm also using Convention Plugins. Just wrap all the multiple dependencies for one library such as Koin or Retrofit and then just call your bundle in one line. It's soo good!!
@utubenada
@utubenada 4 месяца назад
Very cool. BTW. Should androidx-compose-tooling-ui-manifest be named androidx-copmose-ui-test-manifest?
@mohancena8970
@mohancena8970 3 месяца назад
will you update multi-module course with version catalogs instead buildSrc ??
@tarsilacostalonga
@tarsilacostalonga 3 месяца назад
Great video, Philipp! Is it possible to use the versions catalog and group dependencies like you did in the video "Perfect Dependency Management"? I mean, call room() and add all the dependendencies related to it.
@germenwong
@germenwong Месяц назад
of course,You can use a bundle
@mustafaammar551
@mustafaammar551 4 месяца назад
Thank you BRO
@vitalijuskolinko9011
@vitalijuskolinko9011 4 месяца назад
Thank you for great video! :) I'm trying to migrate from buildSrc Deps object in KMM to that catalogs ;) P.S.: Don't forget to update KMM Translator ;) P.S.S.: The name of lib in 21 line should be androidx-compose-ui-test-manifest ;)
@leunamvon2565
@leunamvon2565 2 месяца назад
King of Android.
@DanielLuche
@DanielLuche 4 месяца назад
I'm using version catalog for a while but I didn't know that was possible uses the shortcuts to move build.gralde depencies into toml file.
@Adorabledaivikshorts
@Adorabledaivikshorts 4 месяца назад
Hi Philip Kindly Make an App Demo for a Live Streaming app For HLS or RU-vid Using Jetpack Compose and Kotlin.
@GeertBerkers
@GeertBerkers 3 месяца назад
Can you also do this with hilt dependency injection? I cant make ik work.
@moldovanpeter5123
@moldovanpeter5123 4 месяца назад
We have the same + build conventions
@gabrielabanica615
@gabrielabanica615 19 дней назад
Something is not clear for me. For example, if we use timber library we can use : timber="5.0.1" timber = { group = "com.jakewharton.timber", name="timber",version.ref="timber"} timber = { module = "com.jakewharton.timber:timber",version.ref="timber"} ? It is the same thing if we use group or module? I don't understand the difference between them.
@robertfontaine3650
@robertfontaine3650 3 месяца назад
Updated to the nosebleed version of android studio, ksp, jdk 21 etc. Dependency management is nice. They have done something new with resources as well. factoring and refactoring and rere.... I swear building the framework for an application takes longer than writing the logic. For MVVM I should just be able to configure the entities and click generate. stub the business logic and save a bunch of time. by the time you write 3 mvvm applications it's going to get pretty dull
@that1angrykraken
@that1angrykraken 2 месяца назад
how do we defind a dependency to a module when using version catalog?
@SiamakAshrafi
@SiamakAshrafi 4 месяца назад
Version Catalogs are the default in Android Studio Jellyfish | 2023.3.1 Canary 11
@Yannis1968-9
@Yannis1968-9 3 месяца назад
I tried recreating your room beginner project with this version catalog android studio and I keep getting an error with classes conflicts
@jackc-gw7630
@jackc-gw7630 4 месяца назад
Hey your location tracking app doesnt seem to auto update anymore, do you know why?
@user-pb9zt5iy2n
@user-pb9zt5iy2n 4 месяца назад
i am learning android using your old projects but i am facing issue in your news app. I am stuck at a point from 3 days but i don't get any solution.i am using new version of android that is hedgehog. Please tell me what should i do?
@4ytonly
@4ytonly Месяц назад
Can someone explain why use this!? It look like few steps more then before, and I don't see any extra benefits from doing stuff this way
@itssinghankit
@itssinghankit 4 месяца назад
They are just increasing complexity, adding dependency is much easier in other frameworks, this is the thing which i don't like about android.
@user-cj3lc2nd3x
@user-cj3lc2nd3x 3 месяца назад
How to add kotlin-kapt
@barfyman3Six2
@barfyman3Six2 4 месяца назад
I'm been using this for 2 years now. It's a big improvement but I still don't like the TOML file format.
@jacqueswho
@jacqueswho 4 месяца назад
I prefer your approach to using kotlin build src folder with variables and so forth. Its easier to manage and clean. Or am i missing something?
@gamermom1945
@gamermom1945 4 месяца назад
You don't get the hint that there are newer versions if you use that approach
@excalibur8147
@excalibur8147 2 месяца назад
Came here to solve the same problem at 12:56 (material reference error) and you cut how you solved it :/ update: New projects don't include old material dependency, only material3
@Diego-hn6oh
@Diego-hn6oh 4 месяца назад
Hi, I'm new to android developmet, is it better to get started with view xml or jetpack compose?
@pgnrr
@pgnrr 4 месяца назад
Compose all the way
@shashanksp9168
@shashanksp9168 4 месяца назад
compose , don't waste time learning xml !!
@ahmadzafar5786
@ahmadzafar5786 2 месяца назад
Why not they introduce yaml file like Flutter
@briantaylor_
@briantaylor_ 4 месяца назад
would you say this is more ideal than using a buildSrc in a multi-module app?
@PhilippLackner
@PhilippLackner 4 месяца назад
Yes
@briantaylor_
@briantaylor_ 4 месяца назад
thanks @@PhilippLackner would love to see a video comparing buildSrc vs Version Catalogs with some pros and cons of each
@MarkOverton-fn4gm
@MarkOverton-fn4gm 4 месяца назад
Hi @PhilippLackner, I am busy doing your Multi-Module Architecture paid course and I just finished the Module Setup video. Am I correct in assuming that the Version Catalogue can completely replace the buildSrc method of managing dependencies? And will you update your course with the Version Catalogue method?
@PhilippLackner
@PhilippLackner 4 месяца назад
@@MarkOverton-fn4gm yes you are
@RahulRamakrishnan-si4tb
@RahulRamakrishnan-si4tb 4 месяца назад
What is the advantage of using this over the regular build.gradle?
@PhilippLackner
@PhilippLackner 4 месяца назад
One source of dependencies for multi module projects
@RahulRamakrishnan-si4tb
@RahulRamakrishnan-si4tb 4 месяца назад
@@PhilippLackner makes sense. did not think in that way. Good to know. Thanks for the video
@CodeRedDevelopment
@CodeRedDevelopment 4 месяца назад
Do they also support notices about new versions of the dependencies?
@robchr
@robchr 4 месяца назад
Yes, there will be a yellow squiggly in the version catalog when there is a new version, just like in the build.gradle file.
@CodeRedDevelopment
@CodeRedDevelopment 4 месяца назад
@@robchr Great 🤩 This was always a problem some years ago back when I tried out own version catalogs by gradle ext.
@entorterradofotossintetizante
@entorterradofotossintetizante 4 месяца назад
I’m waiting for the day when they’ll create a dependency manager like Rust’s Cargo or JavaScript’s npm.
@vighnesh153
@vighnesh153 4 месяца назад
I have worked in Javascript land for over 3 years of my life and felt like nothing is better. But after working with Gradle for a year, I have realized why it is superior than NPM. I am not saying it is the best, but it is definitely better than NPM.
@martinseal1987
@martinseal1987 4 месяца назад
Can we have more of your opinions? If you dont want to put then on the main channel i understand
@PhilippLackner
@PhilippLackner 4 месяца назад
Opinions about what specifically? 😄
@vengateshm2122
@vengateshm2122 4 месяца назад
Bundles is missing here.
@ALEX54402
@ALEX54402 4 месяца назад
Already know sir but thanks for the video ❤
@androidkotlin-6234
@androidkotlin-6234 4 месяца назад
how to create hilt plugin with version catalog? I didn't find instruction at docs. I was find it for dagger, not for hilt
@user-sw1ew3jx5f
@user-sw1ew3jx5f 4 месяца назад
Hello world !
@martinseal1987
@martinseal1987 4 месяца назад
This is so bad, as if it wasn't complicated enough already they decided to add a new language file 😢, why can't we take an idea out of flutters playbook? Their pubspec file makes all of this so easy
@martinseal1987
@martinseal1987 4 месяца назад
I wrote this early in the video after seeing all the generated info this is so stupid
@tygourm
@tygourm 4 месяца назад
This feature has been out there for a while and is actually one of the best ways to handle dependancies in Gradle projects. All your dependencies for your modules are centralized, you get autocomplete for plugins and dependencies in your Gradle scripts, you can use bundles to make your dependencies sections even smaller ... I think that it should be the standard for that propose, give it a try and you'll see how good it is 😉
@martinseal1987
@martinseal1987 4 месяца назад
@@tygourm you're right I should but did we really need a new file type to learn
@martinseal1987
@martinseal1987 4 месяца назад
@@tygourm also I didn't realise how long this has been around I thought it was new
@martinseal1987
@martinseal1987 4 месяца назад
@@tygourm I hear you when you say it's the best way because the old way sucked I'm asking if this is a good
@koncinar
@koncinar 4 месяца назад
"Finally, developers can now use one language, Kotlin, for the logic, UI and also build config" "Unacceptable, let's bring in a completely new language without logic, code completion or even type safety. We'll build an extra tool to handle that." "Emmm, ok. We could then group the libraries together. For example with a dot like in the rest of the code?" "Boooooring, let's use dash on one side and dot on the other. So that they can't do a litelar search. Wink wink"
@oleg12395
@oleg12395 4 месяца назад
👍
@byaruhaf
@byaruhaf 4 месяца назад
Wouldn't using Version Catalogs be more relevant for Multi-Module Apps?
@PhilippLackner
@PhilippLackner 4 месяца назад
Yes, but it also becomes the standard for single module apps
@Feints4Days-dx5gd
@Feints4Days-dx5gd 4 месяца назад
This feels so unnecessarily over-engineered
@jackeblan
@jackeblan 4 месяца назад
You don't have to do this in a monolithic project. This is the best and recommended way in a multi-module project.
@kalios01
@kalios01 4 месяца назад
My college faculty be like this could be done by creating val for version 😂
@Nonsense675
@Nonsense675 Месяц назад
Hi Philip I am not able to add the Hilt dependency using this approach, as it gives this error: Duplicate class org.intellij.lang.annotations.Identifier found in modules annotations-12.0.jar -> annotations-12.0 (com.intellij:annotations:12.0) and annotations-23.0.0.jar -> annotations-23.0.0 (org.jetbrains:annotations:23.0.0) I have this in toml [versions] hiltCompiler = "1.2.0" [libraries] androidx-hilt-compiler = { group = "androidx.hilt", name = "hilt-compiler", version.ref = "hiltCompiler" } in build.gradle(apps) implementation(libs.androidx.hilt.compiler) see if if you could help here