Hi Bima, I just stumbled across your YT channel and I have to say how impressive you are. I'm a retired 30+ years software Programmer / Analyst and have rarely seen someone who documents/graphically designs and programs to that design so clearly and concisely.
i like how you show the architecture before proceeding to build the app, it gives so much clarity of what we gonna do, what we required and how we are doing it. so far you are the only youtuber i have seen doing this, most other youtuber just straight starts to build the app with no explanation of the architecture or what's the plan is to build it.
after coil 3.x use both dependencies for async Image function then it will load the photo implementation("io.coil-kt.coil3:coil-compose:3.0.2") implementation("io.coil-kt.coil3:coil-network-okhttp:3.0.2")
Thanks for your great tutorial on Android App using Jetpack Compose and MVVM architecture. Your code is simple and easy to understand. Keep up the good work!
Thank you so much sir!!! Very detail and clear explanation, with logcat guidance, many people didn't teach those so I have no clue when the app ain't run at the end!! You are awesome !! Hope to see more valuable contents from you.
Im an iOS developer looking to learn JPC, just saw your channel and for real its beginner friendly and well explained. Youre what I've been searching for.
I am learning jetpack compose, and I like that you follow a simple pattern which makes understanding concepts very clear. For example: I was facing problem understanding viewModels but you make a standard code in every project, which helps a lot. Keep uploading new compose projects.
@@techkid358 with viewmodel you can separate the logical code and ui code. In the ui code file you just have to call the viewmodel methods and the code becomes more easily readable. Otherwise you will have to go in different files to check where the logical code is written.
sir kindly used StateFlow instead of live data, and use HILT for retrofit object, use latest things, i know its a beginner level project but use latest things 🥰
Great. Just subscribed. Please make videos on ui design also. The composables are looking google product. Like in flutter we can customize a material widget into our own, like disabling ripple, changing ripple color, bottom bar using their api. Which is hard in jetpack compose i guess
very nice video thank you, can you make a video about crud retrofit connecting localhost web api server using postgresql with jetpcak compose mvvm architecture?
Hello Sir. I have developed as per you and its all successfull. Only I cant do that the image with coil, something kotlin version error is raising. Please help me out.
hlo bro please reply , i copied everything from you i tried a lot check all the things again and again but it is not working it always show unable to load what to do
Best Quality. Plz continue making such projects and plz remeber while making videos that we are begineers so make it begineer friendly. BTW Thanks for this video 🕉🕉❤❤
I have a question if i may. When using the weather API in the view model, does it matter if we psss it with object instantiation or DI with constructor injection? Whats the benefit of DI in that case?
AsyncImage( modifier = Modifier.size(120.dp), model = "https:${data.current.condition.icon}", contentDescription = "condition icon" ) the Image is not reflecting in my application any update for this
@@EasyTuto1 where you noted 📝 Show me 💀 Please create it Because when I use dezzer API so it provides only preview url which was play in media player But these full provided url can't play in media player Or When I try to use Spotify so it's paid because it gives exception( You Are not subscribed to this API) And I check many other API but no one is usefull Please find a good and best API which plays indian songs also 😘
SIR iam watched your video which is tiktok clone app and i have done all the videos as well as everything is ok but finally i have a problem like this android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK typ=Video/* } now how to solve it.
Best to ask ChatGPT: I asked a question about your problem and chatGPT answered me: The ActivityNotFoundException you're encountering suggests that there is no application installed on the device that can handle the intent you are trying to start. Specifically, it seems like you're trying to open a video picker with the following intent: java code Intent intent = new Intent(Intent.ACTION_PICK); intent.setType("video/*"); startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO); Here are a few potential solutions to handle this issue: 1. Check if there's an app that can handle the intent Before starting the activity, check if there is an app that can handle the intent: java Code Intent intent = new Intent(Intent.ACTION_PICK); intent.setType("video/*"); if (intent.resolveActivity(getPackageManager()) != null) { startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO); } else { // Notify the user or handle the absence of video picker apps gracefully Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show(); } 2. Provide an alternative if no app is available If there is no app to handle the video picking intent, you could provide an alternative solution, such as allowing the user to record a video or using a third-party library to pick videos. 3. Handle the exception You can wrap your startActivityForResult call in a try-catch block to handle the exception gracefully: java Code Intent intent = new Intent(Intent.ACTION_PICK); intent.setType("video/*"); try { startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO); } catch (ActivityNotFoundException e) { // Notify the user or handle the absence of video picker apps gracefully Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show(); } 4. Use a File Picker Intent If your target is to let the user select a video file, you can use a more general file picker intent: java Code Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("video/*"); intent.addCategory(Intent.CATEGORY_OPENABLE); if (intent.resolveActivity(getPackageManager()) != null) { startActivityForResult(Intent.createChooser(intent, "Select a Video"), REQUEST_CODE_PICK_VIDEO); } else { Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show(); } 5. Include a Permission Check Make sure you have the necessary permissions to access storage, especially if you are targeting Android 6.0 (Marshmallow) or higher, where runtime permissions are required. xml Code Also, check for the permission at runtime: java Code if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, REQUEST_CODE_PERMISSION); } else { // Permission has already been granted, proceed with the intent } By applying these solutions, you should be able to avoid the ActivityNotFoundException and provide a smoother experience for users when they try to pick a video.
We thank you for your good performance in explaining these practical applications, but we would like more complex applications so that we can learn how to improve performance.
Hi Bima, I just stumbled across your YT channel and I have to say how impressive you are. I'm a retired 30+ years software Programmer / Analyst and have rarely seen someone who documents/graphically designs and programs to that design so clearly and concisely.
i like how you show the architecture before proceeding to build the app, it gives so much clarity of what we gonna do, what we required and how we are doing it.
so far you are the only youtuber i have seen doing this, most other youtuber just straight starts to build the app with no explanation of the architecture or what's the plan is to build it.
after coil 3.x use both dependencies for async Image function then it will load the photo
implementation("io.coil-kt.coil3:coil-compose:3.0.2")
implementation("io.coil-kt.coil3:coil-network-okhttp:3.0.2")
Thanks for your great tutorial on Android App using Jetpack Compose and MVVM architecture. Your code is simple and easy to understand. Keep up the good work!
Thank you so much sir!!! Very detail and clear explanation, with logcat guidance, many people didn't teach those so I have no clue when the app ain't run at the end!! You are awesome !! Hope to see more valuable contents from you.
Im an iOS developer looking to learn JPC, just saw your channel and for real its beginner friendly and well explained. Youre what I've been searching for.
Excelente video, muy ilustrativo y el ejemplo realizado es completo.
Sólo me queda agradecer, porque aprendí mucho!
Muchas gracias
thank you for your video. could you explain how can we display weather forcast
for following 7 days. thanks
Thankyou Dear Sir ❤
I really enjoyed learning 🎉
You made it so easy to understand 🙏
It's my pleasure
thanks thanks thanks!!!
great video
I am learning jetpack compose, and I like that you follow a simple pattern which makes understanding concepts very clear.
For example: I was facing problem understanding viewModels but you make a standard code in every project, which helps a lot.
Keep uploading new compose projects.
can u explain why exactly we use ViewModel, or what it's benefits ?
@@techkid358 with viewmodel you can separate the logical code and ui code. In the ui code file you just have to call the viewmodel methods and the code becomes more easily readable. Otherwise you will have to go in different files to check where the logical code is written.
@@techkid358 +1
Really thank you. Please make a video of running Metronome at a certain real speed, for example, let it be 120 BPM and 4/4, using Java or Kotlin.
Thank you so much sir. Excellent ❤❤
Most welcome
Bro, you deserve salute
sir kindly used StateFlow instead of live data, and use HILT for retrofit object, use latest things, i know its a beginner level project but use latest things 🥰
Also he doesn’t have a repository
18:00 convetor ka shortcut key kya hai mac me ??
Awesome content. You deserve more likes on this video. 👍👍👍
Thank you so much 😀
Great. Just subscribed. Please make videos on ui design also. The composables are looking google product. Like in flutter we can customize a material widget into our own, like disabling ripple, changing ripple color, bottom bar using their api. Which is hard in jetpack compose i guess
Noted
Great tutorial. Thanks
Thanks for the awesome teaching, thanks for doing it in English
Thanks
Thank you, I learned too much. I will continue to see your content
Glad to hear it!
very nice video thank you, can you make a video about crud retrofit connecting localhost web api server using postgresql with jetpcak compose mvvm architecture?
Hello Sir. I have developed as per you and its all successfull.
Only I cant do that the image with coil, something kotlin version error is raising.
Please help me out.
Thank you so muchh sirrr❤
Thanks for this amazing tutorial
hlo bro please reply , i copied everything from you i tried a lot check all the things again and again but it is not working it always show unable to load what to do
No Activity found to handle Intent { act=android.intent.action.PICK typ=Image/* } please help me about this problem sir
Nice Video
please make a complete e commerce project with api integration & local db
God bless you
Best Quality. Plz continue making such projects and plz remeber while making videos that we are begineers so make it begineer friendly. BTW Thanks for this video 🕉🕉❤❤
Thank you, I will.
❤
Good English. If you can slow down a bit you will be perfect.
Sir please make a using navigation
make a video on music player in jetpack compose plz
how to integrate current location in weather app
I have a question if i may. When using the weather API in the view model, does it matter if we psss it with object instantiation or DI with constructor injection? Whats the benefit of DI in that case?
If you have large scale project use DI otherwise for small project like this, its not required.
Just One Question how much time you actually need to make this app?
Bro Android studio
App create to
How earn money vedio please
Kya XML Ana jaruri he
AsyncImage(
modifier = Modifier.size(120.dp),
model = "https:${data.current.condition.icon}",
contentDescription = "condition icon"
)
the Image is not reflecting in my application
any update for this
CAN YOU PLEASE MAKE A VOICE RECORDER APP WITH JETPACK COMPOSE ? PLEASE REPLY .
Soon
@@EasyTuto1 tq very much
I really like your videos ❤
Can you create a complete music app using dezzer API in android studio please 🙂
Noted.
@@EasyTuto1 where you noted 📝
Show me 💀
Please create it
Because when I use dezzer API so it provides only preview url which was play in media player
But these full provided url can't play in media player
Or
When I try to use Spotify so it's paid because it gives exception( You Are not subscribed to this API)
And I check many other API but no one is usefull
Please find a good and best API which plays indian songs also 😘
thank you for this video
Welcome!❤
Bro your videos are amazing.keep posting such amazing and explanatory videos❤❤@@EasyTuto1
Bro can we implement fetch current location functionality to get current weather of location??
Yes take the location from user and send it to api.
Ok@@EasyTuto1
Ok
SIR iam watched your video which is tiktok clone app and i have done all the videos as well as everything is ok but finally i have a problem like this
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.PICK typ=Video/* }
now how to solve it.
Best to ask ChatGPT: I asked a question about your problem and chatGPT answered me:
The ActivityNotFoundException you're encountering suggests that there is no application installed on the device that can handle the intent you are trying to start. Specifically, it seems like you're trying to open a video picker with the following intent:
java code
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("video/*");
startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO);
Here are a few potential solutions to handle this issue:
1. Check if there's an app that can handle the intent
Before starting the activity, check if there is an app that can handle the intent:
java Code
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("video/*");
if (intent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO);
} else {
// Notify the user or handle the absence of video picker apps gracefully
Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show();
}
2. Provide an alternative if no app is available
If there is no app to handle the video picking intent, you could provide an alternative solution, such as allowing the user to record a video or using a third-party library to pick videos.
3. Handle the exception
You can wrap your startActivityForResult call in a try-catch block to handle the exception gracefully:
java Code
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("video/*");
try {
startActivityForResult(intent, REQUEST_CODE_PICK_VIDEO);
} catch (ActivityNotFoundException e) {
// Notify the user or handle the absence of video picker apps gracefully
Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show();
}
4. Use a File Picker Intent
If your target is to let the user select a video file, you can use a more general file picker intent:
java Code
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("video/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
if (intent.resolveActivity(getPackageManager()) != null) {
startActivityForResult(Intent.createChooser(intent, "Select a Video"), REQUEST_CODE_PICK_VIDEO);
} else {
Toast.makeText(this, "No app available to pick a video", Toast.LENGTH_SHORT).show();
}
5. Include a Permission Check
Make sure you have the necessary permissions to access storage, especially if you are targeting Android 6.0 (Marshmallow) or higher, where runtime permissions are required.
xml Code
Also, check for the permission at runtime:
java Code
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, REQUEST_CODE_PERMISSION);
} else {
// Permission has already been granted, proceed with the intent
}
By applying these solutions, you should be able to avoid the ActivityNotFoundException and provide a smoother experience for users when they try to pick a video.
how to chnage the background according to temperature ?
Change background of parent layout programatically.
Ctrl + f shortcut how work
ctrl f+r
20:32
Thanksss
❤
how to show AQI?
Show if it has that data in json.
We thank you for your good performance in explaining these practical applications, but we would like more complex applications so that we can learn how to improve performance.
Noted!
@@EasyTuto1 Ok 😊
20:44