Building a scalable, modularized, testable app from scratch

  Переглядів 150,419

Android Developers

Android Developers

День тому

If you're building an app from scratch or looking to update your app to follow modern Android development best practices, this talk will give you a high-level overview of all the pieces you need, and how they fit together using a real-world example: the Now in Android app. The source code for this app can be found at goo.gle/3XTxMIR
This talk also explains how we built one of the app's features and the decisions behind its design. We'll cover the app's testable, modular architecture and talk about how we built a set of reusable UI elements using Jetpack Compose and Material3.
Speaker: Don Turner
Chapters:
0:00 Introduction
1:12 Architecture overview
2:47 Data layer
5:03 UI layer overview
5:26 Creating a state holder
8:50 Creating a screen
11:34 Modularization
14:37 Testing
17:36 Creating an instrumented test
18:27 Material Design
20:03 Material component customization
20:43 Summary
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/AndroidDevs
#Featured #AndroidDevSummit #JetpackCompose

КОМЕНТАРІ: 111
@freemote
@freemote Рік тому
this is the state of the art on how tutorials should be, detailed well structured and straight to the point. its coming from the android team ... so i am not surprised. thanks for sharing such case study
@ChrisAthanas
@ChrisAthanas 8 місяців тому
Definitely upgrade from the normal google android content (poor audio, difficult to understand and poorly structured, random unnecessary details)
@stevepeterson9735
@stevepeterson9735 Рік тому
Wow, I think this is one of the most inspiring overviews of present day Android architecture I have seen. I've been doing Android development for 10+ years and this guide is music to my ears (I won't admit to the 3000+ line activity files from my past). If this seems like too many classes layers, for any on-trivial, multi-developer/designer project, this will save work, promote parallel development and facilitate reuse.
@AndroidDevelopers
@AndroidDevelopers Рік тому
Thank you so much for your kind words, Steve! It warms our heart to see users so positive and so open to sharing their experiences with us. It is an honor to have you onboard 😊
@user-zw1kr1su9b
@user-zw1kr1su9b Рік тому
😀
@user-zw1kr1su9b
@user-zw1kr1su9b Рік тому
🔥
@user-zw1kr1su9b
@user-zw1kr1su9b Рік тому
//Button that launches settings UI private Button mSettingsAppButton; private static final String RB_SETTING_APP_INTENT = "android.adservices.ui.SETTINGS"; //Does setup for button on screen that will launch settings UI to observe Topics private void registerLauchSettingsAppButton() { mSettingsAppButton.setOnClickListener( new View.OnClickListener() { @Override public void onClick(View view) { Context context = getApplicationContext(); Intent activity2Intent = new Intent(RB_SETTING_APP_INTENT); activity2Intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); context.startActivity(activity2Intent); } }); }
@ChrisAthanas
@ChrisAthanas 8 місяців тому
Only took ten years lol And the 3000+ line activities were actually best practices from the early days of android What a mess
@TheMikkelet
@TheMikkelet Рік тому
Thank you for not just doing "hello world". Most real world apps are messy and complicated. It's nice to see you suggest solutions to address app scaling!
@domonk7450
@domonk7450 Рік тому
One of the best videos from the Android team.
@AndroidDevelopers
@AndroidDevelopers Рік тому
Thanks, DomonK! Your comment totally just made our day 😎
@chuyebrian8949
@chuyebrian8949 Рік тому
The stateless and stateful versions of screens is dope! Respect, it saves one's sanity from thinking how you'd make things performant and testable.👍🏾
@jordanray1537
@jordanray1537 Рік тому
That was a solid app build. Though I'm only a newer developer, the concepts were explained really well and everything is logical and straightforward to me!
@AndroidDevelopers
@AndroidDevelopers Рік тому
We're so happy to hear this, Jordan! Glad that the video was a helpful learning experience for you 🙌
@hnim2292
@hnim2292 Рік тому
This now-in-android project is made with a lot of enthusiasm! Love the architecture. Just one thing for me, I will put the :core:domain or :core:data in each feature modules. I think it will be more scalable
@etasdemir
@etasdemir Рік тому
The shortest but very informative video with the necessary knowledge I have ever seen on this channel.
@AndroidDevelopers
@AndroidDevelopers Рік тому
Glad to hear that the video was helpful to you, Eren! Thanks for sharing your feedback with us 👍
@arindamdasgoogledeveloper
@arindamdasgoogledeveloper Рік тому
I wanted to restart Android development . I think this video is just the correct one to start with. Everything is so well explained and to the point.
@ashwithchandra2622
@ashwithchandra2622 Рік тому
Bro we want more like this more with jetpack compose it's really interesting and easy understanding. Thank you very much Android developers keep posting videos like this it helped me a lot.
@AndroidDevelopers
@AndroidDevelopers Рік тому
We agree, Jetpack Compose is really awesome! Make sure to subscribe, so you don't miss any of our future tutorials: goo.gle/AndroidDevs
@luisfelipecoronadotorres962
@luisfelipecoronadotorres962 Рік тому
@@AndroidDevelopers Hi guys, do you or any partners have any paid bootcamps, courses/certifications covering the A to Z of jetpack? (much like this guide but on a deeper way?) I've been out of app dev. for more than 6 months and the free courses cover compose quite well but theres so much more (flows, workmanager, datastore, etc). I find it easier to learn with a cross project than individual separated codelabs.
@user-fc2lg9dc1t
@user-fc2lg9dc1t Місяць тому
That's the concise meaningful almost all-over guide that arranges what was learned! I am thankful for it.
@TenHorizons
@TenHorizons Рік тому
I'm a newcomer to Android app development from a Java fresh graduate background. Watching this video I feel like I understand a lot, but also don't understand a lot 😂 The video gave a great explanation on how to write apps with good architecture, but it also gave me a lot of questions such as what are how events work, what is a scope, how exactly to work with Flow and Preview and much more. Overall, I love this overview! It give me something to aim for and topics to study ❤️
@amponsahhubert4884
@amponsahhubert4884 Рік тому
I need more of these. Great video
@mdalikazi
@mdalikazi Рік тому
Wow they went all in from where to place the classes to Tests to Material Design example! Didn't expect to see all this going in.
@codelite700
@codelite700 Місяць тому
I really enjoyed this session. We went from all the high level stuff to low level details. The modularisation section was really special. Raised my standards!
@btc2100
@btc2100 Рік тому
Awesome, I just needed this kind of video. Thank you.
@PabloSantiago
@PabloSantiago 4 місяці тому
This is exactly what I needed to get started with real world development after getting familiar with Compose and Kotlin , THANK YOU!!
@ShibasisPatnaik
@ShibasisPatnaik Рік тому
This is the best comprehensive guide to a non trivial modern Android app
@AndroidDevelopers
@AndroidDevelopers Рік тому
Glad to hear this was so helpful, Shibasis! With so much creative power at your fingertips, what will you design? The sky is the limit 🌌 🌃
@AwKeli
@AwKeli Рік тому
Great tutorials, so easy to understand 👍
@myamzid123shah9
@myamzid123shah9 Рік тому
This one is totally understandable :), easily puts all the concepts nicely.
@guilhermecarneiro4554
@guilhermecarneiro4554 Рік тому
Awesome! best dev experience ever
@valterszaluzinskis2453
@valterszaluzinskis2453 3 місяці тому
Insanely informative and most importantly understandable, its realy a gold in pile of various information
@vengateshm2122
@vengateshm2122 Рік тому
Jetpack compose simplifies android development even if you come from different framework background like Swift UI, React etc. The engineers built it based declarative ui concept.
@jeghamaymen
@jeghamaymen Рік тому
This sums it all up in a very good way ...
@pranaysamrit5169
@pranaysamrit5169 2 місяці тому
This video is gem ! Nice work by team
@akthamahmed2171
@akthamahmed2171 Рік тому
Excellent talk Thank you a lot 🌹🧡
@367labs
@367labs Рік тому
So well explained. Thanks
@darrenhoyne7459
@darrenhoyne7459 Рік тому
This was a very well scripted and delivered talk. Covered an awful lot of bases but was very clear.
@AndroidDevelopers
@AndroidDevelopers Рік тому
Thanks, Darren! Comments like yours are important, because they let us know we're consistently bringing high quality informational content to our viewers-like you! We really appreciate it 😎
@SapphireStudioart
@SapphireStudioart Рік тому
this video is great! thank you!!
@skytech2501
@skytech2501 Рік тому
tbh this is more complicated! I have almost 10 years of android experience, although the lifecycle, concurrency problems are a lot better nowadays I think we are overcomplicating things nowadays with multiple repos, modules and over abstraction. from my experience I would just recommend keep the abstractions very minimal and don't be shy about creating code duplications as long as the product doesn't hits it's mature state. because often times we spend more time on abstracting things than doing actual productive work.
@dragossusi
@dragossusi Рік тому
You spend less time implementing new features than maintaining old features, this will make things easier. Going with this clean architecture does help a lot for bigger projects where multiple people work on the same project and you can distribute work to every developer.
@skytech2501
@skytech2501 Рік тому
@@dragossusi that's the same argument for micro services and it created more problems then solutions. I think we have to step back and ask first why the freaking build time is so high, why everything is a repo even for simple async call, why everything is reactive when you can perfectly do simple synchronous call, why do I have to change everything whenever a shiny new API comes. We had doom in the 90s before 3d was a thing and we didn't have any complicated abstractions and hundreds of software layers and "clean architecture". We should strive for simplicity rather than writing things to fit a so called "clean architecture"
@dragossusi
@dragossusi Рік тому
@@skytech2501 it depends on the feature and requirements, it's hard to keep your code as a monolith and run it on 10.000 servers across the world. For Android it's pretty hard to do AB testing without abstracting the functionality and it's pretty hard to test. Once you get used to writing this way, it will get better and develop things faster than before. It's also far easier to test and catch bugs before going to production. In the past you could have success with simple apps like a flashlight app for Android, but now you have to have a lot of functionality for your app to gain audience. But I agree with you for some projects, but this is the recommended way for a successful application, you just create a lot of classes like you would build your own libraries, instead of writing spaghetti code and spend hours changing some functionality (tests are the hardest to maintain).
@skytech2501
@skytech2501 Рік тому
@@dragossusi complexity is almost always a result of optimization. Let me give you an example, we have an entire set of libraries for dependency injection, I call that unnecessary abstractions, other words its solving very tiny problems for a large cost of bloated build time, dynamic coupling (leads to runtime errors), if it's property injuction then it's even hard to reason about what the component dependencies are. On the Contrary you write your own factory and constructors then all the sudden your compiler does the work for you. It's not about creating multiple classes to separate responsibility it's about inventing complexity in the name of scalability and reusability!
@GoDigital685
@GoDigital685 Рік тому
Wow I really love this platform
@lazaroyesid
@lazaroyesid Рік тому
Great content, great explanation ! thanks to the dev relations team !
@AndroidDevelopers
@AndroidDevelopers Рік тому
Great feedback, Yesid! You can also learn even more features by checking out Jetpack Compose via this link: goo.gle/3A0N7h9 Let us know how you'll use Jetpack Compose for your project or app. We're eager to hear more 🤩
@mgroups
@mgroups Рік тому
Very clear cut concepts..
@chuyebrian8949
@chuyebrian8949 Рік тому
Beautiful. I thought I was doing things wrong! Thanks a lot. I wished you showed the code for VersionCatalogs, plugin conventions and elaborated more on how to use them in modularization.
@abrarwiryawan
@abrarwiryawan Рік тому
@@donturner1928 is there any codelab about using this build logic with version catalog?
@alementuev
@alementuev Рік тому
Amazing work, Don! ❤
@davidfarrow5727
@davidfarrow5727 Рік тому
+1
@ihorkarpachev4447
@ihorkarpachev4447 Рік тому
So useful! Thank you
@AndroidDevelopers
@AndroidDevelopers Рік тому
We've got you covered, Ihor! We've gone ahead and linked the summit event page below for your convenience. Enjoy 😄 goo.gle/3TRoB9T
@josipmarasovic2436
@josipmarasovic2436 8 місяців тому
If any can answer when we use navigation we pass the scrren with state and not with viewmodel in our composable fucntion?
@calvinwcox1990
@calvinwcox1990 Рік тому
Great video just confused because I'm not familiar with the kotlin syntax just Java but I was able to fill in the blanks though by cross-referenceing what you were saying with what I know about Java
@b1ueocean
@b1ueocean 9 місяців тому
Hey mobile devs, are there any unified UI DSL libraries for defining UIs across both android and IOS? I’m planning to develop mobile apps natively and share lots of business logic across the web and mobile, throwing something together to address this. The bit that is frustrating me is achieving something similar for the UI. Even if the web UI remains a separate concern, being able to describe the mobile UI in a unified way would really help. Any insights appreciated 👍 And yes I know about all of the usual suspects such as Flutter, Capacitor, Traui, NativeScript and so on. Won’t be using any of these 👈
@leonardosantana4804
@leonardosantana4804 9 місяців тому
Terrific!
@sitedel
@sitedel Рік тому
A local storage layer should be added between the data layer and the UI layer. This layer responsibility is to : - return placeholder values when data is not yet available from the repository : managed on the UI side by the Loading... state, but how to return to loading state on refresh ? - ensure data consistency: 1. recompute derived values like count, sum, average when items are added or removed from a list 2. acts as a barrier to send a cohérent set of values to the UI 3. prevent updating a list of items while the associated UI is in selection mode 4. act as a buffer to stack events like selection states until the "Apply" event is triggered by the user through the UI - do data remediation on publication: ignore changing data of any item removed from the last snapshot, take care of data validation schemes from the data layer, let the user solve conflicts like addition of an item already added by another user All those use cases are common pitfalls of user experience that are still not covered in my opinion by the View ViewModel Data layers.
@heshansandeepa9471
@heshansandeepa9471 8 місяців тому
awesome
@MaracuyaFrozen
@MaracuyaFrozen Рік тому
Thank you
@youNeverThoughtAboutIt
@youNeverThoughtAboutIt Рік тому
speaking of stateless\stateful decomposition, if my viewmodel contains no data from network but some text input validators, do I use the same approach to contain my viewmodel in a separate composable function?
@chuyebrian8949
@chuyebrian8949 Рік тому
I believe that if your viewModel doesn't create uiState then you don't need the stateful version, just pass your VM to the stateless version although if you intend to scale, then you should consider may be passing viewModel to both or reconsider your design.
@donturner1928
@donturner1928 Рік тому
If your view model _just_ contains text input validators, no state, then it's not a view model, it's a logic holder, in which case you can instantiate it as a plain class and pass it as a dependency to your Composable. There would be no need (and indeed, no possibility since your VM doesn't contain state) to create stateful and stateless Composables.
@youNeverThoughtAboutIt
@youNeverThoughtAboutIt Рік тому
fair enough, thanks
@jeremykenn
@jeremykenn Рік тому
is there java version of this series ? thank you
@majinzeke4977
@majinzeke4977 Рік тому
Can you please make more videos on pose detection?
@kalidsherefuddin
@kalidsherefuddin Рік тому
Thanks
@chuyebrian8949
@chuyebrian8949 Рік тому
I believe the link between the modules (how are they linked in code) is one of the most important things here but you didn't show, please, show in a next video
@itguru4all
@itguru4all Рік тому
How can we provide dependencies using hilt in this modular approach mentioned in the video?
@donturner1928
@donturner1928 Рік тому
In the Now in Android project we use a convention plugin for the Hilt configuration (github.com/android/nowinandroid/blob/46deba844e43e4bfa0dc55ee08353276df16df39/build-logic/convention/src/main/kotlin/AndroidHiltConventionPlugin.kt). This can be used by any module which uses Hilt, either by applying the plugin directly in your build.gradle.kts, or by applying it inside another convention plugin which is then used by that module. For example, the ForYou feature module (github.com/android/nowinandroid/blob/dcc23829d4cbbe800b21646dc138587b3949896d/feature/foryou/build.gradle.kts#L17) applies the `nowinandroid.android.feature` plugin, which applies the `nowinandroid.android.hilt` plugin. The assumption here is that feature modules will always use Hilt for dependency injection. Once you have the Hilt configuration set up, you can use the Hilt annotations (e.g. @HiltViewModel in github.com/android/nowinandroid/blob/dbff140b64da33e9802206102ce3dcfd1ef15dcb/feature/foryou/src/main/java/com/google/samples/apps/nowinandroid/feature/foryou/ForYouViewModel.kt#L51-L50) as you would normally.
@neverever7233
@neverever7233 Рік тому
People who designed Android programming were clearly not from our world. To invent such complicated way to do simple things! I came from other programming languages, trying to learn it now and see it's just crazy over-complicated. Especially giving names to methods and variables.
@ChrisAthanas
@ChrisAthanas 8 місяців тому
It’s been one hack over hack to fix a hack since day one A Revolution is brewing and it’s name is Compose Android will soon just be an abstraction over a compose library Android platform stinks
@joperor
@joperor 2 місяці тому
Is the project in the github repository? The YT link does not open this project or I do not know how to look....
@chrislagos44
@chrislagos44 Рік тому
please do tell what the syntax is doing. Some of us are still stuck with the old Java ruidmentary ways! Like this Line: data class Success(val newsResources : List) : ForYouUiState in this line what is the purpose of ForYouUiState ? Also by reading this line, I assume that the class has a constructor with the only parameter of type List
@donturner1928
@donturner1928 8 місяців тому
I recommend the Kotlin Koans course kotlinlang.org/docs/koans.html. It's specifically for Java developers who want to learn Kotlin. To answer your questions though. ForYouUiState is the supertype of Success and yes, Success has a constructor which takes a List
@yisun9573
@yisun9573 Рік тому
Awesome! I like this video! I will watch it again during my development. Btw I didn't find the github link. If you can share it for me, I will be grateful! Have a good day~
@zekininadresi
@zekininadresi Рік тому
When DataStore exposes a cold flow, how we ensure the collector is still updated once the flow emits its last/final value? Is there a loop or backing state flow?
@donturner1928
@donturner1928 Рік тому
Great question. At @ 7:42 you can see there's a StateFlow which is used to convert the cold flow which comes from DataStore into a hot flow. The viewModelScope is specified so that when the ViewModel goes out of scope collection will stop. Collection will also stop if there are no downstream subscribers on the StateFlow (e.g. when the screen is no longer visible).
@zekininadresi
@zekininadresi Рік тому
@@donturner1928 Thx for the reply 👍. I was actually rather curious about how the upstream cold flow that is exposed by DataStore( or similarly by Room or callbackFlow) is kept active, especially after they emit their last values. What I've found out is that most of such APIs use channels under the hood which is sort of a blocking queue and keep the exposed cold flow active until it's closed.
@donturner1928
@donturner1928 Рік тому
@@zekininadresi Ah I see, another great question. The internals of DataStore are here: github.com/androidx/androidx/blob/354b4bdd5395fb3de9cce96915c5aebf5bdc4abf/datastore/datastore-core/src/commonMain/kotlin/androidx/datastore/core/SingleProcessDataStore.kt#L58. It looks like DataStore uses a MutableStateFlow internally into which new values are emitted whenever a write occurs. This is how the flow is kept alive.
@boddendanieldeveloper1494
@boddendanieldeveloper1494 Рік тому
Thanks Google for important info
@simpleuxapps8759
@simpleuxapps8759 Рік тому
It would be helpful if there was a link to a sample project which implements all that. Great video, though.
@AndroidDevelopers
@AndroidDevelopers Рік тому
Sample projects are incredibly helpful. We've got one for this you can look at right here! goo.gle/3tB6x8t
@akhileshramteke6290
@akhileshramteke6290 Рік тому
Welcome to Android Development 😊
@AndroidDevelopers
@AndroidDevelopers Рік тому
Stay awhile and listen 🧙‍♂️
@freesources6872
@freesources6872 Рік тому
can anybody say @ 3:38 do we need to create custom class UserPreferences ? if yes then in that class what do we need to declare?
@donturner1928
@donturner1928 Рік тому
The UserPreferences class is autogenerated from a protobuf file which defines the fields you want to store in DataStore. You can see this here: github.com/android/nowinandroid/blob/main/core/datastore/src/main/proto/com/google/samples/apps/nowinandroid/data/user_preferences.proto
@freesources6872
@freesources6872 Рік тому
@@donturner1928 Thank you for providing the link to the autogenerated UserPreferences class. I appreciate your help in clarifying this. However, I noticed that the bookmarks map is not included in the proto file. In this case, should I use the bookmarked_news_resource_ids instead of the bookmarksMap? Additionally, do I need to create a local Map bookmarks in the LocalDataSource class for the toggleBookmark function?
@freesources6872
@freesources6872 Рік тому
@@donturner1928 Thank you for the clear answer. I appreciate your help!👍🏼👍🏼
@muhammedashraf5085
@muhammedashraf5085 Рік тому
is source code available in github? it will be helpful to newbies like us
@AndroidDevelopers
@AndroidDevelopers Рік тому
Hi, Muhammed! You can find the source code for this app on GitHub, here: goo.gle/3XTxMIR We hope this helps 😊
@SanalDersaneLeventYadrga
@SanalDersaneLeventYadrga 7 місяців тому
The modularization thing seems very complicated and there is no comprehensive documentation.
@riyupapa39
@riyupapa39 Рік тому
Are there any guide about build-logic from scrach? It is too hard to study
@taotechsolutions
@taotechsolutions Рік тому
I'm new in this space
@AndroidDevelopers
@AndroidDevelopers Рік тому
Welcome in! Grab a seat and kick up your feet, we have plenty of resources to help you get started 🎓 You can find more videos by subscribing to our channel here: goo.gle/AndroidDevs You can also check out our guide on Building your first app here: goo.gle/3N0k5Dn
@taotechsolutions
@taotechsolutions Рік тому
Thanks boss
@noctislucispacis6082
@noctislucispacis6082 Рік тому
Add feature to android Built in Gcam Monitor Thermal heat Show developers option in setting Reducing Heat engine Accurate export files Accurate send files in Google drive And Google Photo Accurate Google drive transfer files Reader Accurate bluetooth files
@user-zg6sv1bd2l
@user-zg6sv1bd2l Рік тому
ดีครับคําแปลภาษาไทยดีครับ
@user-dg6jb3pn8u
@user-dg6jb3pn8u 10 місяців тому
who's Adam?
@ChrisAthanas
@ChrisAthanas 8 місяців тому
15:07 we would take you more seriously if ALL the sample code coming from google did this Lol They never have tests and wonder why front end devs skip it Lol
@MrAndrewtux
@MrAndrewtux Рік тому
Why don't you also do the same in flutter and compare the app ? Pro and cons
@ingenieroluisfer
@ingenieroluisfer 6 місяців тому
👋🏼🇨🇴🧔🏻👍🏼🤝🏻
@rafaeladel20
@rafaeladel20 Рік тому
Man .. each couple of months, Google changes all the concepts 180 degree, It's getting tiresome and frustrating keeping up to date to Android development.
@FunTheMentalist
@FunTheMentalist Рік тому
you can be quite sure that anything you learn in this video can and will change in the future
@user-zg6sv1bd2l
@user-zg6sv1bd2l Рік тому
พอเข้าใจเป็นอย่างแต่เข้าใจง่ายมีคําแปลภาษาด้วยดีครับ😁
@pocof3556
@pocof3556 Рік тому
I love Java
@KV_zacc
@KV_zacc 2 місяці тому
instant downvote for "he/him"
5 quick animations to make your Compose app stand out
7:05
Android Developers
Переглядів 48 тис.
MVVM vs. MVI - Understand the Difference Once and for All
18:40
Philipp Lackner
Переглядів 21 тис.
Анна Трінчер - Бар за баром (Official Music Video)
02:38
Анна Трінчер
Переглядів 1,9 млн
And what’s your age? 🥰 @karina-kola
00:12
Andrey Grechka
Переглядів 6 млн
Build a modular Android app architecture (Google I/O'19)
32:21
Android Developers
Переглядів 175 тис.
You might not need useEffect() ...
21:45
Academind
Переглядів 121 тис.
Kotlin Coroutines 101 - Android Conference Talks
24:49
Android Developers
Переглядів 129 тис.
Rabbit R1: Barely Reviewable
19:53
Marques Brownlee
Переглядів 6 млн
By layer or feature? Why not both?! Guide to Android app modularization
5:23
Android Developers
Переглядів 38 тис.
How ChatGPT Built My App in Minutes 🤯
8:28
Website Learners
Переглядів 1,7 млн
Как должен стоять ПК?
1:00
CompShop Shorts
Переглядів 614 тис.
Changing Replace And Edit Backgrounds New Tech || Photo Eedit NEW3X
0:50
Не Бери INFINIX NOTE 40 и NOTE 40 Pro, Не Посмотрев Это Видео!
28:34
РасПаковка ДваПаковка
Переглядів 68 тис.
Обзор Nothing ear (3) и ear (a) - ПРОРЫВ за $100
17:34
СКОЛЬКО ЕЩЕ БУДЕТ АКТУАЛЕН IPHONE 13?
14:10
DimaViper Live
Переглядів 56 тис.