By layer or feature? Why not both?! Guide to Android app modularization

  Рет қаралды 44,591

Android Developers

Android Developers

Күн бұрын

In this talk, we will give you a set of common patterns and recipes for modularizing your project in the context of the modern Android app architecture. Learn the types of modules and their role in a multi-module codebase.
Resources:
Guide to Android app modularization → goo.gle/3NM5KLr
Speaker: Miłosz Moczkowski
Watch more:
Watch all the Android Dev Summit sessions → goo.gle/ADS-All
Watch all the Modern Android Development track sessions → goo.gle/ADS-MAD
Subscribe to Android Developers → goo.gle/Androi...
#Featured #AndroidDevSummit #Android

Пікірлер: 32
@sawyermade5469
@sawyermade5469 11 ай бұрын
This is perfect, explains everything concisely while simultaneously being terse. Cheers.
@walrider7374
@walrider7374 6 ай бұрын
I mean, it explains the theory, but how do you achieve multi module layer in real world??
@sawyermade5469
@sawyermade5469 6 ай бұрын
@@walrider7374 I mean, you'd have to design a feature level architecture where each feature is a module, right?
@walrider7374
@walrider7374 6 ай бұрын
@@sawyermade5469 oh, so for example authentication module having clean architecture in it? source, repository and usecase package? and the same for all the other feature modules?
@sawyermade5469
@sawyermade5469 6 ай бұрын
@@walrider7374 In my case, I have login as a module, then I have a data module which has all my API stuff (ktor), DataStore, models, and Firebase etc. Then I have a home screen module, job management module, etc where each module after login and data is only coupled with login and data, there's no coupling between the rest of the features. Im also working on a consistent UI that I will probably put in each individual module once I get there. Theres some redundant code but I can work on the features individually without breaking anything else.
@seguramlk
@seguramlk 4 ай бұрын
​@@walrider7374Actually according to this approach, you'll have at least 3 modules. Let's say for example: user:ui, user:domain and user: datasource You'll also need to have 3 common modules: ui, domain and datasource Your feature modules will depend on their parents. So user:ui will depend on ui, user:domain will depend on domain and so on So from a top-down view, you'll have this setup: user:ui ⬇️ user:domain ⬇️ user:datasource You'll create packages like this: datasource⤵️ datasource(module) user:datasource The root datasource package will be a simple folder Inside of it you'll have 2 GRADLE Modules :datasource (Base module, common to all other modules) :user:datasource (This is your specific feature module, in this case, the feature is called user, hence the name. It's important to apply meaningful names to your modules so you'll look at it and will already know what it does) Hope I could help you man If you have any other ideas, leave them here. I don't know everything, far from it actually, so it's always great to see different approaches 👍
@marcm3623
@marcm3623 27 күн бұрын
0:25 Modularisierung Strategien 0:40 - 1:30 strategy: encapsulate each architectual layer e a Module; recommentation with 3 architectual layers: UI, Domain, Data. Der datenlayer enthält: repositories und Datenquellen. Domain: Business Logic und usecases UI: User Interface and stakeholders 2:50 granularität als Beurteilungskriterium
@bitwisedevs469
@bitwisedevs469 2 ай бұрын
I think the best way to explain the last part or at least the safest strategy is to use the app/main module to stitch each feature module, the presentation layer of each feature module should ideally contains only ViewModels so it is up to the consumer which is the app module on how to present it in UI via View XML or Compose.
@victormartinezlegaz1871
@victormartinezlegaz1871 Жыл бұрын
In my experience, when scaling to a large number of developers is better to avoid sharing business logic and data between feature modules. This may involve some duplication, but it can help prevent coupling and simplify maintenance in the long term.
@seguramlk
@seguramlk 4 ай бұрын
@victormartinezlegaz1871 Hey Victor. How would you achieve that? Could provide some examples on how to do that or any real world scenarios where you struggled with this approach. I'm curious to know more about it. Thanks for sharing 👍
@chuyebrian8949
@chuyebrian8949 Жыл бұрын
Nice explanation.
@SHURA_RC
@SHURA_RC 7 ай бұрын
Estoy entrando en este tema y quedo muy bien explicado.
@guilhermenunes3130
@guilhermenunes3130 8 ай бұрын
great overview :)
@davetao
@davetao Жыл бұрын
In a large codebase, additions to a feature data module cascades into changes to changes to other modules as well and in effect causes teams to block each other
@marlonlom
@marlonlom Жыл бұрын
How can i use firebase auth or firestore in separated modules instead of the app module ??
@d_chem_
@d_chem_ Жыл бұрын
Are you sure that the domain module depends on the data module?
@peterfischer2748
@peterfischer2748 Жыл бұрын
This seems to be the official decision by Google in their MAD series. The domain module there only consists of use cases rather than domain models. Since this diverges from common definitions (like DDD and clean architecture) I'm sure Google discussed this internally. I'd love to hear their thoughts and pros and cons of the different approaches. Maybe they consider this approach more beginner friendly because it avoids IoC.
@gregoryphiri5724
@gregoryphiri5724 Жыл бұрын
Was actually thinking the same like using DIP to have public interfaces for the data layer in the domain n have the data sources in the data modules implementing the interfaces in the domain.
@BigCarso
@BigCarso Жыл бұрын
@@peterfischer2748 I don't think it necessarily avoids IOC, but I think it is just a more sensible description of the relationship between domain and data. Using an interface IMO doesn't mean you can say domain doesn't depend on data layer. It still calls functions that direct to the data layer
@seguramlk
@seguramlk 4 ай бұрын
I think it makes sense when you modularize by both Feature and modules because you'll have specific feature modules inside common modules such as datasource or domain. In this case, you can either have an interface to communicate with lower modules but in this approach you'll have to depend on specific feature modules for example: user:ui DEPENDS ON user:domain THAT DEPENDS ON user: datasource that only depends on its parent :datasource Your parent :domain module should not depend on :datasource though. Only its children should depend on :datasource children and on :datasource by association
@koenkraak5922
@koenkraak5922 Жыл бұрын
I really don't see how the combined architecture solves the redundancy/code duplication problem. The domain:books still has no access to authors (Even though it can access the data:authors, it cannot obtain them with use cases/ re-used business logic) and suddenly the ui layer uses both domains? Does that mean that the GetBooksWithAuthorUseCase is implemented in the ui layer now? Really confusing
@GakisStylianos
@GakisStylianos Жыл бұрын
GetBooksWithAuthorUseCase can be in a module which can see both the other two domain modules. No need for it to be implemented in the UI module of course.
@mohammedabdelsabour1412
@mohammedabdelsabour1412 Жыл бұрын
Data module depend on domain module not reverse I sure
@BigCarso
@BigCarso Жыл бұрын
It depends what you mean by depends on. IMO IOC doesn't mean "the data layer depends on domain module"
@seguramlk
@seguramlk 4 ай бұрын
I don't think so. I don't see any problem with the domain module depending on the datasource module. The domain module needs to process data, business logic. So it needs to have Access to repositories and other files in order to inject them into Usecases so they will be able to process that data and provide it to the UI layer Maybe it's not the best approach, but it sure is better than having no organization in your projects whatsoever The worst case scenario is that if you need to change this arch setup, it will be easier than migrating from messy projects in regards to modularization
@vipinsahu1306
@vipinsahu1306 Жыл бұрын
Separate codebase by Feature module ending up with Clean Architecture
@GoDigital685
@GoDigital685 Жыл бұрын
🤩🤩🤩🤩
@ErikBongers
@ErikBongers 2 ай бұрын
It's not clear to me what is meant by "loose coupling". I think this is often a vague or even faux argument that just looks good on powerpoint slides. A better, more practical approach in determining the efficacy of a chosen modularization is what I call "The checkbox test". Plan to add a new checkbox to a screen and see what modules and files are affected. You'll often find that the impact goes vertical through the layers from UI to database. Ideally, this dependency line goes straight down and doesn't affect horizontal neighbours. In the worst case, the module graph shows that the whole codebase will get recompiled. Time to split up things in vertical columns. That's proper decoupling. If however you find that you are duplicating code across different columns (features) you may opt to recouple a certain layer horizontally, like in a domain layer. However, as suggested in Andriod, by using small UseCases, you should keep this layer well fragmented to avoid unnecessary horizontal coupling. If your newly added checkbox changes a usecase that triggers a full recompilation, then it's probably time to refactor. A 2nd test is the "Cheap lasagne" test. If you have lots of layers where a class is just a proxy (boilerplate) that passes events or data from the previous layer to the next, then consider removing the boilerplate from that layer. Especially when it may have a runtime impact with member functions just forwarding to other members in the next layer. Even if the element in the layer is just an interface with zero runtime cost - if the interface only ever has one implementation, consider not having such an interface. The compiler will thank you and the code maintainer will thank you. Bigger companies may opt to keep these functionally empty elements for consistency, but personally I'm not a fan this.
@kalidsherefuddin
@kalidsherefuddin Жыл бұрын
Ok
@coldwised
@coldwised 5 ай бұрын
bruh, none of your repositories follow this architecture
@seguramlk
@seguramlk 4 ай бұрын
Do as I say but not as I do. I like this approach though
@3CHONPRODUCTIONS
@3CHONPRODUCTIONS Жыл бұрын
This was so poorly explained and I bet when the example comes out it will never compile just like all their other repos
Accurately measure app performance with profileable builds
6:32
Android Developers
Рет қаралды 9 М.
Don't Do These Fatal Mistakes With a Multi-Module Architecture
10:19
Philipp Lackner
Рет қаралды 41 М.
Do you choose Inside Out 2 or The Amazing World of Gumball? 🤔
00:19
Players vs Corner Flags 🤯
00:28
LE FOOT EN VIDÉO
Рет қаралды 63 МЛН
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 7 МЛН
Building a scalable, modularized, testable app from scratch
21:31
Android Developers
Рет қаралды 177 М.
Architecture: The Domain Layer - MAD Skills
8:48
Android Developers
Рет қаралды 58 М.
Why OpenAI o1 has Changed the Game for AI Agents
12:45
Yash Chaubal
Рет қаралды 4,1 М.
Fragments in Compose
10:45
Android Developers
Рет қаралды 17 М.
More performance tips for Jetpack Compose
20:47
Android Developers
Рет қаралды 40 М.
The ONLY Correct Way to Load Initial Data In Your Android App?
12:27
Philipp Lackner
Рет қаралды 24 М.
MVVM vs. MVI - Understand the Difference Once and for All
18:40
Philipp Lackner
Рет қаралды 43 М.
Modularizing Android Apps
18:16
CodingWithMitch
Рет қаралды 20 М.
Do you choose Inside Out 2 or The Amazing World of Gumball? 🤔
00:19